Apologies if this is in the wrong section, I simply want to add an audio track to a couple of pictures, so it simply plays as a video I can post on facebook, with no menus etc etc. I realise its a slideshow type presentation, but whats the best free program to do this. Thanks![]()
+ Reply to Thread
Results 1 to 4 of 4
-
-
You can simply do this with applications like Windows Media Center, Windows Movie Maker, or iMovie. Here are a couple of websites I found, too:
http://slide.ly/
http://www.photoshow.com/home/start
I hope this helps. Good luck! -
You can do it with FFMpeg, if you are familiar with that, also.
Single Image with audio:
Code:"C:\ffmpeg" -loop 1 -f image2 -i "C:\Images\img00001.jpg" -i "C:\Various test Formats\audio.ac3" -map 0:0 -map 1:0 -shortest -acodec aac -vcodec libx264 -r 30 -t 4 "C:\Images\img00001_IMG2VID_wAudio2.FLV"
Multiple Images (starting with img00001.jpg):
Code:"C:\ffmpeg" -r 1/4 -i "C:Images\img00%3d.jpg" -i "C:\Various test Formats\audio.ac3" -map 0:0 -map 1:0 -shortest -loop 1 -qscale 1 -acodec aac -vcodec libx264 -r 30 -max_interleave_delta 0 "C:\Images\img00001_IMGsVID_wAudio3.FLV"
Similar Threads
-
Problems Adding Picture to Video
By XenobladeShulk in forum Newbie / General discussionsReplies: 1Last Post: 26th Apr 2015, 14:14 -
adding audio with avidemux
By ricmetal in forum Newbie / General discussionsReplies: 10Last Post: 23rd Mar 2015, 16:45 -
Adding audio to mkv or mp4
By phenex in forum Newbie / General discussionsReplies: 2Last Post: 4th Jan 2014, 10:56 -
Adding movie description, picture, etc to ISO rip - How do I do this?
By tuprox in forum Video Streaming DownloadingReplies: 0Last Post: 25th Dec 2012, 19:58 -
Audio delay reported in MKV and what to do with it when adding new audio
By pascal in forum AudioReplies: 14Last Post: 30th Dec 2011, 11:07