Hi guys, new here so please excuse if in the wrong group. I have 4 images (Photo1.bmp, Photo2.bmp, Photo3.bmp and Photo4.bmp) which I would like to make into a video with each image showing for about 1/2 a second. I have tried with multiple images and ok but I only have 4 images which I would like to view over 2 seconds. Any help with mmpeg greatly appreciated and not much hair left here lol. Thanks in advance guys.
+ Reply to Thread
Results 1 to 9 of 9
-
-
What software are you using to make that video?
Extraordinary claims require extraordinary evidence -Carl Sagan -
Every relevant mention of "mmpeg" seems to refer to FFMPEG.
Someone who actually knows what they're doing might chime in but from a few seconds of research it works something like this:
Code:ffmpeg -r 1/2 -start_number 1 -i "photo%3d.bmp" -c:v libx264 -vf "fps=24000/1001,format=yuv420p" e:\out.mp4
Last edited by ndjamena; 24th Feb 2017 at 11:01.
-
-
Thankyou guys, will work with those and hopefully good for me. Thanks for your time, appreciated.
-
Thanks ndjamena, I'll try that too. thankyou for your help.
After trying it was looking good but when I numbered the images in the actual images, 1,2,3,4 to check each frame was being displayed, number 4 was not being displayed.
Last edited by AnthonyHunt; 26th Feb 2017 at 00:03.
-
Are you sure it's not there? Like I said, for some reason FFMPEG will make the final image last only a single frame. I had to add a fifth image to get the video to last 2 seconds (plus the extra frame).
ffmpeg -r 2 -start_number 1 -i "F:\Work\Untitled%2d.bmp" -c:v utvideo -pred 3 -vf "fps=25,format=yuv420p" -t 00:00:02.000 "F:\Work\Untitled.avi"
adding -t 00:00:02.000 trims the extra frame, leaving 2 seconds worth of video made from the first 4 images.
Similar Threads
-
Compiling images and video
By krohm in forum EditingReplies: 20Last Post: 30th Mar 2016, 21:05 -
Create video from images with ffmpeg
By TorBru in forum Video ConversionReplies: 7Last Post: 30th Aug 2014, 08:42 -
how to put images in the video
By bobo11 in forum EditingReplies: 5Last Post: 9th Jun 2014, 21:16 -
Include Docs/Images in Video
By mgrove in forum Newbie / General discussionsReplies: 2Last Post: 17th Aug 2012, 10:49 -
Creating video from images WITH audio
By boyer in forum Video ConversionReplies: 13Last Post: 3rd Mar 2012, 02:01