[FFmpeg-user] ffmpeg: slide show on Windows
Michael Koch
astroelectronic at t-online.de
Tue Nov 17 13:04:13 EET 2020
Am 17.11.2020 um 11:50 schrieb RAPPAZ Francois via ffmpeg-user:
> I'm on Windows 10 with ffmpeg ...
> Then I tried with
> ffmpeg -y -f image2 -framerate 8 -i "%02d.JPG" -i SligoAir_WhiteBlanket.mp3 -vsync vfr -pix_fmt yuv420p output.mkv
If you are starting this command line from a batch file, you must escape
the % character:
-i %%02d.jpg
The "" quotation marks can be omitted.
"-f image2" can also be omitted.
I think "-vsync vfr" can also be omittred (but here I'm not sure).
Michael
More information about the ffmpeg-user
mailing list