Re: [FFmpeg-user] Create a video using images and audio with blend and zoom filters using FFmpeg

2016-10-12 Thread Nikhil M Ranka
Using this command I am trying to generate a video with a combination of both blend and zoompan fiters. > ffmpeg \ > -loop 1 -t 5 -i 164470_2.jpg \ > -loop 1 -t 5 -i 164470_4.jpg \ > -loop 1 -t 5 -i 164470_5.jpg \ > -filter_complex \ >

Re: [FFmpeg-user] Create a video using images and audio with blend and zoom filters using FFmpeg

2016-10-12 Thread Nikhil M Ranka
Yes, as per Carl's suggestion, I installed the latest version ffmpeg version N-81972-g8063978-static http://johnvansickle.com/ffmpeg/ Copyright (c) 2000-2016 the FFmpeg developers Now, can you look at the command which is to generate a video with blend and zoom filters and help me with fixing

Re: [FFmpeg-user] Create a video using images and audio with blend and zoom filters using FFmpeg

2016-10-12 Thread Reto Kromer
Nikhil M Ranka wrote: >ffmpeg version N-63893-gc69defd Copyright (c) 2000-2014 >the FFmpeg developers built on Oct 31 2014 05:16:04 As Carl Eugen already mentioned, you should really update. Best regards, Reto ___ ffmpeg-user mailing list

Re: [FFmpeg-user] Create a video using images and audio with blend and zoom filters using FFmpeg

2016-10-12 Thread Nikhil M Ranka
Thank for the reply. It is this command that I am facing issues with. Can you tell me how to fix it? Have already spent hours if not days finding a solution for this **Blend with zoom** > > ffmpeg \ > -loop 1 -t 5 -i 164470_2.jpg \ > -loop 1 -t 5 -i 164470_3.jpg \ > -loop 1 -t 5

Re: [FFmpeg-user] Create a video using images and audio with blend and zoom filters using FFmpeg

2016-10-12 Thread Carl Eugen Hoyos
2016-10-12 12:36 GMT+02:00 Nikhil M Ranka : > ffmpeg -framerate 1/4 -start_number 1 -i 164470_%d.jpg -c:v libx264 -r >> 30 -pix_fmt yuv420p -vf scale=16:9 out.mp4 start_number 1 is / was never necessary. > Then, tried adding an audio to the video, and this is the command