I'm searching for a way to combine an audio & an image file into video. I have various software - SolveigMM Video Splitter, Handbrake and MKVtoolnix. Can any of the mentioned programs accomplish this? If not, what can?
+ Reply to Thread
Results 1 to 11 of 11
-
-
Thanks, JVRaines,
I've tried a very similar command, a few times, and at the end of the process I receive the following line of request:
Code:Enter command: <target>|all <time>|-1 <command>[ <argument>]
-
Try adding "< /dev/null" or "< NUL" (Windows) to the end of the command.
-
dvd slideshow gui
or VirtualDub:
1) open image file with File -> Open Video File.
2) Video -> Frame Rate. Set source rate to 1/seconds, where seconds is the desired length of your video. Ie, if your song is 2 minutes long enter 1/120. Set Frame Rate Conversion to a typical video frame rate. Say, 30 fps.
3) Video -> Compression. Select a compression codec and configure it.
4) Audio -> Audio From Another File, add your audio.
5) File -> Save as AVI.Last edited by jagabo; 16th Jul 2016 at 18:41.
-
Got my retirement plans all set. Looks like I only have to work another 5 years after I die........
-
JVRaines, jagabo, racer-x, thanks very much for your replies.
I've settled for now with FFMpeg, creating video out of an image, and next merging it with audio in MKVToolnix. I'm using the following line:
Code:ffmpeg -loop 1 -i "myimage.jpg" -c:v libx264 -t 60 -pix_fmt yuv420p -vf scale=1280:720 out2.mp4 < NUL
-
Alternatively ",fps=fps=30" can be added to -vf, side to this i would add "-tune stillimage" and i would try to reduce video bitrate by involving pulldown on x264.
-
-
Short answer: Yes
Seem that pulldown works only in x264 not libx264 (ffmpeg use libx264) as such you may consider to use pipe from ffmpeg to x264 to fully use H.264 syntax capabilities...
Code:@ffmpeg -y -stream_loop -1 -t 60 -framerate 10 -i "%1" -vf fps=fps=10 -strict -1 -pix_fmt yuv420p -f yuv4mpegpipe - | x264.exe --demuxer y4m --profile high --preset fast --tune stillimage --crf 18 --level 4.0 --overscan show --pic-struct --pulldown triple --bluray-compat --fake-interlaced --muxer mkv -o "%~n1.mkv" -
Similar Threads
-
Downloading with EagleGet. Separate audio and video? Need to combine them.
By SyncroScales in forum Video Streaming DownloadingReplies: 2Last Post: 17th May 2015, 06:19 -
Easy tool for Windows to combine video and sound into a single file?
By yetanotherlogin in forum EditingReplies: 2Last Post: 15th Nov 2014, 10:31 -
Combine two videos with different bitrates audio/video but same FPS
By helaku in forum Video ConversionReplies: 6Last Post: 4th Feb 2013, 19:14 -
Combine and sync audio from other video
By helaku in forum EditingReplies: 5Last Post: 25th Jan 2013, 17:44 -
Combine Still Image with Audio
By bseos in forum Video ConversionReplies: 5Last Post: 3rd Mar 2012, 15:07