Re: [FFmpeg-user] ffmpeg: slide show on Windows

2020-11-17 Thread RAPPAZ Francois via ffmpeg-user
Oh Thanks a lot ! François -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: 17 November 2020 14:23 To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] ffmpeg: slide show on Windows Am 17.11.2020 um 14:09 schrieb RAPPAZ Francois via ffmpeg-user: > Tha

Re: [FFmpeg-user] ffmpeg: slide show on Windows

2020-11-17 Thread Michael Koch
Am 17.11.2020 um 14:09 schrieb RAPPAZ Francois via ffmpeg-user: Thanks that was it And if I Would like to have each image shown during 15 seconds (I have 15 pictures and whants the total time being 225 sec), How should I specified the -framerate and -r ? I tried ffmpeg -y -f image2

Re: [FFmpeg-user] ffmpeg: slide show on Windows

2020-11-17 Thread RAPPAZ Francois via ffmpeg-user
15 -pix_fmt yuv420p output.mkv But that it's too short a time for each picture Cheers François -Original Message- From: ffmpeg-user On Behalf Of Michael Koch Sent: 17 November 2020 12:04 To: ffmpeg-user@ffmpeg.org Subject: Re: [FFmpeg-user] ffmpeg: slide show on Windows Am 17.11.2020 um

Re: [FFmpeg-user] ffmpeg: slide show on Windows

2020-11-17 Thread Michael Koch
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,

[FFmpeg-user] ffmpeg: slide show on Windows

2020-11-17 Thread RAPPAZ Francois via ffmpeg-user
Hello there I'm on Windows 10 with ffmpeg and I would like to make a video (a slide) with a bunch of jpeg files and an mp3 music file. I tried first cat *.JPG | ffmpeg -y -f image2pipe -framerate 1 -i SligoAir_WhiteBlanket.mp3 -vsync vfr -pix_fmt yuv420p -movflags +faststart output.mkv with