![]() |
Work in progress, and a question - Printable Version +- The Voynich Ninja (https://www.voynich.ninja) +-- Forum: Voynich Research (https://www.voynich.ninja/forum-27.html) +--- Forum: Voynich Talk (https://www.voynich.ninja/forum-6.html) +--- Thread: Work in progress, and a question (/thread-2859.html) |
RE: Work in progress, and a question - bi3mw - 23-07-2019 A delay between the frames can be generated as follows: ffmpeg -r 0.25 -pattern_type glob -i 'test*.jpg' -r 25 -c:v libx264 out.mp4 You are not allowed to view links. Register or Login to view. RE: Work in progress, and a question - MarcoP - 24-07-2019 (23-07-2019, 08:28 PM)ReneZ Wrote: You are not allowed to view links. Register or Login to view.Many thanks for the various suggestions about animation, and the pro-actively proposed solutions (!) in particular from doranchak. What I would do, is generating "paused" and fading frames at will using imagemagick: Code: for rate in 25 50 75; do composite -blend $rate b.jpg a.jpg a'_'$rate'.jpg'; done Then animate the result with ffmpeg. I guess you will only need a small framerate (12 at most). Others will certainly suggest something smarter ![]() RE: Work in progress, and a question - -JKP- - 24-07-2019 I'm sorry I don't have any useful suggestions. My work requires that I used high-end video editing software, so I've never delved into other ways of doing it. It did occur to me that maybe PowerPoint could do what you want, but I've never used it and I don't know if it compromises the colors. RE: Work in progress, and a question - Helmut Winkler - 24-07-2019 Rene, sorry if I did not express myself clearly. What I meant is that B. 408 was not produced the way a printer produces a book arranging his pages in a certain order on a big paper sheet, which is printed, folded and cut or even like a medieval scribe (how you arrange the psalms when producing a psalter is a good example), but that single bifolioos were written, most likely in the order f. 1 r + v and 2 r + v and at some time ordered according to topics and bound together. This does not matter much in the herbal part, but gives a not coherent text in something like q. 13 or 20. That is why I think to present the ms. like an orderly produced book is misleading. This could have consequences, e.g. for the meaning of glyphs as well, but that is another matter RE: Work in progress, and a question - MarcoP - 24-07-2019 Sample script and You are not allowed to view links. Register or Login to view.. RE: Work in progress, and a question - bi3mw - 24-07-2019 Hi Marco, it would be good if after each fade a number (let's say 25) of the 6 original images are inserted. You could simulate breaks this way. Duplicating is easy, of course, but how do one correctly number all together ? Code: for i in {1..25}; do cp test_1.jpg "test$i.jpg"; done Edit: I copied it manually, the result looks like this: You are not allowed to view links. Register or Login to view. RE: Work in progress, and a question - ReneZ - 24-07-2019 Marco, many thanks! That is quite close to what I hoped to achieve. Privately, I don't have Linux, and in general I don't seem to have access to ffmpeg. RE: Work in progress, and a question - -JKP- - 24-07-2019 Do you have access to a Mac, Rene? It's Unix. RE: Work in progress, and a question - ReneZ - 24-07-2019 Thanks also to bi3mw!! The JPEG's I generated are quite large. They were sampled from the original digital scan with half the width and height, which is still a bit much for these types of animation. (THe height of around 1800 pixels does not fit on normal screens). I wonder how large the video files of Marco and bi3mw are... RE: Work in progress, and a question - bi3mw - 24-07-2019 Hi Rene, scaling to half the size is 905.9 kB. Code: ffmpeg -i out2.mp4 -filter:v scale=720:-1 -c:a copy out3.mp4 You are not allowed to view links. Register or Login to view. |