|
Re: Command Line Software for animations / slideshows
Use imagemagick for the transitions, then ffmpeg and/or mencoder for the video.
Edit:
Take your image that you want to fade in/out, run "convert -modulate x in.png out.png" to reduce brightness to x%.
So if you want to do a fade over 50 frames, you'll take your modulate values as 98, 96, 94, 92, ... 4, 2, 0.
Then you feed in your images at whatever framerate you pick, i.e.,
0, 2, 4, ... 92, 94, 96, 98, 100, 100, 100, 100, 100, 98, 96, 94, 92, ..., 4, 2, 0, 0, 0, 0, 0, 2b, 4b, ..., 92b, 94b, 96b, 98b, 100b, 100b, 100b, 100b, 98b, 96b, 94b, 92b, ..., 4b, 2b, 0
And naturally, you'll want to script it.
Last edited by droidhacker; 24th July 2012 at 04:16 PM.
|