Hi,
I have a series of jpeg images (I could make them another format if that helps) and an audio file (wav) that I would like to convert to a movie. The movie is supposed to be embedded in a MS PowerPoint presentation. Each image must last exactly 250ms in order to sync to the audio data.
I've tried dozens of freeware programs the whole day long, but none seem to give satisfying results. The Windows Movie Maker got me quite far, but then the quality of the images is crap compared to the original jpegs.
Anyone know of a way? I just can't believe that this is so hard to do...
I appreciate any help!
Stephan.
+ Reply to Thread
Results 1 to 21 of 21
-
-
Have you trie Microsoft's free Photo Story 3?
http://www.microsoft.com/windowsxp/using/digitalphotography/photostory/default.mspx"Just another sheep boy, duck call, swan
song, idiot son of donkey kong - Julian Cope" -
I have a recommendation for you,you can first make a PowerPoint with the images and insert the audios into it,and then convert the PowerPoint to videos with the professional tool
Moyea PowerPoint to Video Converter
http://www.dvd-ppt-slideshow.com/ppt-to-video/ -
Originally Posted by StephanJohn
Well, try http://www.my-video-converter.com/, and it can easily solve your problem... -
Hi all,
thanks for the many recommendations!
1. I hadn't tried MS PhotoStory. I have now, but unfortunately I can only specify the duration of a slide/photo in tenths of seconds there. I.e., 0.25 seconds is rounded to 0.2 seconds.
2. I have the same problem when testing the PowerPoint to Video Converter: slide duration cannot be specified under a second; neither in PowerPoint nor in the Moyea Software.
3. I visited the my-video-converter site and read through the descriptions of all their software, but couldn't find one that would convert images to a video. Probably I'm blind. Could you point me to the one you were thining of, partake06? Thanks!
Still grateful for any solution!
Stephan. -
Originally Posted by StephanJohn
Here is just a small sample of Partaake06's spamming
http://forums.mercurynews.com/topic/hd-video-converter-for-machd-converter-for-macmac-...nvert-hd-video
http://forums.mercurynews.com/topic/tipshow-to-convert-youtube-videos-to-mp4-for-your-...rtable-devices
http://www.filedownloadfull.com/forums/f8/hd-video-converter-mac-877213/
http://www.filedownloadfull.com/forums/f8/rip-dvd-converter-video-imedia-converter-mac-377953/
http://forum.vuilen.com/showthread.php?p=565428
http://www.audiograbber.com-us.net/boards/cgi/postings.cgi?action=reply&forum=Audiogra...+questions&num
ber=1&topic=005508.cgi&TopicSubject=How+to+convert +videos+to+MP4+for+your+iPhone|QUS|+&replyto=0
http://forum.gadgetzone.com.au/Default.aspx?g=posts&m=3263
-
A bit more spam:
No seriously
If you can live with each frame is showing 0.24 ms then maybe you can do it in DVD slideshow GUI. It works in frames.
Since you're from Germany I suspect that you want it in PAL(25 frames pr. sec). Set it in Presets. If every image is shown 0.24 ms - it is shown in 6 frames(6/25=0.24).
Or if you want to render it in 16:9 720p and 1080p runs at 23.976 frames pr. sec (6/23.976=0.25025025)
Then after importing all your slides you must set the duration of the slide to 6(frames) and all transitions to cut.avs(0 frames long all other transitions are at least 3 frames).
I don't know what kind of video PowerPoint takes?
When exporting if you want you video in a different size - I would recommend you to export it to .avs and render that file to a video file with ex. Super because it let you change the size of the resulting video. (If you want to export to flv(flash) then DVD slideshow GUI can do that for you). -
Google Picasa does a great job at taking images and turning them into a movie. 1/4second per image might be hard though.
-
QT Pro. Rename the files to have a sequential batch extension (*.001.png, *.002.png, *.003.png ...*.999.png) like 1-For-All Renamer, and Import the sequence (by selecting the 1st file) and then specify the framerate (in your case, 250ms = 4fps). It'll load all of them up with the right duration. You could then add in the prepared audio track, Save as Movie, and you're done!
Scott -
Thanks for the answers!
tin2tin, unfortunately, I really need exactly 250ms per slide because of my audio data
The smallest rate Picasa offers is 1 slide per second...
Quicktime seems promising. However, the drop-down menu for selecting the framerate doesn't offer 4fps, only 6fps or 2fps. Does your version offer 4fps, Cornucopia? Maybe they changed that in a recent version?
Secondly, Quicktime doesn't find any image files in the folder where I have my images stored... Very strange. But that's probably an installation problem. I could try a different computer for that, if I have the chance of a correct frame rate.
Stephan. -
How many images are we talking about here? How long is your final video? Maybe 0.000025025 ms difference isn't visible at all(HD version)? Or 0.01 ms difference.
The problem is that an image can't be shown in half frames. So you gotta first deside what on what framerate you need for Power Point?
Actually I think your needs are that speciffic that you should check out Avisynth.
A script consisting of
'a=Imagesource(...)' to load an imagesequence with a 6 frames duration for each frame and fps(frames pr. sec) = 24.
'b=wavsource(...)' to load your audio
'Audiodub(a,b)'
(check the avisynth docs for those commands)
And use Super to render the .avs script to what ever format you need. -
Originally Posted by StephanJohn
Make the slides 5 frames long at 20fps.
Add AssumeFPS(20) at the end of the script.
EDIT: or 6 frames at 24fps, of course. -
OK, I'm getting there...
I used AviSynth with the following .avs file
Code:v = ImageSource("D:\talks & poster\finess-film\Bildmaterial\Einzelbilder\%03d.jpg", 1, 23, 24) v = AssumeFPS(v,4) a = WAVSource("D:\talks & poster\finess-film\Beispiel-Daten\M1of2_16bit-mono.wav") AudioDub(v,a)
I'm now trying SUPER to convert the .avs to something PowerPoint will read. So far, I only succeeded with the .asf format. But the image quality is quite crappyI'll have to fiddle around with that for a while...
At the worst I just won't embed it in PowerPoint but play it in MediaPlayerClassic during the presentation. The synchronization between audio and video is much more important.
Anyway, thanks a lot for all the help!
Stephan. -
Originally Posted by StephanJohn
It works for me. -
In this case:
At the worst I just won't embed it in PowerPoint but play it in MediaPlayerClassic during the presentation.
But 720p or 1080p needs a somewhat powerful computer to play back realtime...
If you want it exact 24 fps. You can also export the .avs script from DSG with 6 frames pr. image and the use you script from above by adding this to the end of that script:
Code:v = last v = AssumeFPS(v,24) a = WAVSource("D:\talks & poster\finess-film\Beispiel-Daten\M1of2_16bit-mono.wav") AudioDub(v,a)
-
sounds like at 4fps you are doing stop motion or a time lapse.
either way you may be better off looking at this from a stop motion animation perspective. I googled stop motion for ya and this site seems promising...
http://www.stopmotioncentral.com/downloads.html -
Originally Posted by StephanJohn
I'd suggest making them all 1fps, save as Uncompressed AVI, and then decimate (by skipping) the framerate in Vdub, but that's a good deal more extra steps than I originally gave. At that point, it might make more sense to go with AVISynth or similar. Or one of those stop-motion apps.
Scott -
I happened to do a timelapse of a sunset on the weekend using continuous shooting of 5 second exposures on a DSLR. I dropped it into Premiere Pro and set the default still-frame duration to 10fps. (thus a 50x times up). It worked great.
You could download the Adobe Premiere Pro CS4 trial and do that. I'm pretty sure it'll let you render that to video without a watermark etc.
Similar Threads
-
How do i make a composite video of a talking head plus powerpoint slide?
By johnbaldry99 in forum Newbie / General discussionsReplies: 1Last Post: 18th Aug 2009, 16:28 -
I need to make a simple slideshow DVD
By jeffzilla in forum Authoring (DVD)Replies: 5Last Post: 25th Sep 2008, 02:52 -
Basic questions - PowerPoint to WMV to connect with AVI files to make DVD
By epotereiko in forum Newbie / General discussionsReplies: 0Last Post: 20th Apr 2008, 12:56