I am using ffmpeg to convert a series of bitmaps into an AVI file, using this syntax
ffmpeg.exe -framerate 60 -start_number 1 -i BMP%05d.BMP -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y -vf format=yuv420p output.AVI
which works fine.
But now I want to "ping pong" the output. ie create an AVI twice as long, but the second half is the same frames in reverse. So the movie plays forward, then in reverse.
I don't see any options/switches for this in the documentation. Is it possible?
Thanks for any tips.