Ask questions via twitter! Message any question to @answers on twitter. We'll publish the question and send you a reply each time there's a new answer.
Next Question

Answered Question

 
M$1 March 05, 2009 12:25 AM

On a Mac, what's the best tool/way to convert a series of webcam still JPEG images into an MPEG video? Preferably using Automator?

I know how to do this using ImageMagick on a UNIX machine, but I'd prefer a simpler solution on my Mac. Preferably something that I can automate to take a day's worth of captured JPEGs from my Webcam and convert into an MPEG every day, using Automator (just a preference). I've heard rumors QuickTime Pro might be able to do this but I've found no conclusive proof.
Interesting Question?  Yes (0)   No (0)   
RSS
 
 

Best Answer  Decided by Votes

ans ans
 
March 05, 2009 02:39 AM
It's a little more technical than using Quicktime, but I think you'll get the best results from using FFmpeg. Taking in a bunch of JPEGs and outputting a movie file is bread and butter for this command line app.

Their official site is: http://www.ffmpeg.org/ but you're probably better off grabbing ffmpegx, a mac gui client for ffmpeg, which also give instructions for installing everything you need:

http://ffmpegX.com/download.html

My experience with ffmpeg is with the command line only so I'll explain that. Once you've installed ffmpeg, let's look at how you could use it from the terminal:

Assuming you have a directory of sequentially named jpeg files (001.jpg, 002.jpg, 003.jpg etc) you'd just run the command:

ffmpeg -r 10 -b 1800 -i %03d.jpg test.mp4

There is plenty more tweaking you can do. But to explain the arguments above:

"-r 10" is the framerate, 10 frames per second.
"-b 1800" is the bitrate or quality. 1800 gives a high quality movie. You can lower this figure if you want a smaller movie file.

There are plenty of other options for adjusting the size, movie format etc. There may be a bit of a learning curve to getting it set up but I think it's the solution you're after.

Because it's a command line application it is very easy to schedule automatic daily jobs etc. (through cron or other scheduling systems).


Helpful Answer?  (0)   (0)    Tip ans for this answer
Permalink | Report
   Reply  
 
 

Other Answers (1)

Sort By
 
March 05, 2009 02:27 AM
QuickTime Pro, it will make a movie with your stills and it's fully supported by Automator / Apple Script.

"QuickTime Pro makes it easy to create a slideshow from your favorite pictures. Since QuickTime supports a large variety of image formats, you can use nearly any type of image in your slideshow"

http://www.apple.com/quicktime/tutorials/slideshow.html
Source(s):
http://www.apple.com/quicktime/tutorials/slideshow.html


Helpful Answer?  (0)   (0)    Tip ebarrera for this answer
Permalink | Report
   Reply  
 
 

Answer this Question

How tips and payments work

This question has already been resolved. You may add an answer to it but you will not be eligible to win best answer or any associated tips.

Ask a Question


140 characters left
Top of Page
Buy Mahalo Dollars with Credit Card or PayPal

Top Members

This Week All Time
  • buddawiggi
    buddawiggi
    2nd Degree Black Belt
    27543 Points
    M$789.91 Earned
  • opher
    opher
    Purple Belt
    4443 Points
    M$196.22 Earned
  • annelisle
    annelisle
    Purple Belt
    2997 Points
    M$91.22 Earned
   See All
 

Most Popular Tags

mahalo(1618)
iphone(465)
music(461)
google(357)
food(321)
online(295)
beer(279)
money(262)
movies(258)
apple(251)
aotd(235)
health(220)
video(207)
free(205)
dog(205)
   See All
 

Categories

Welcome New Members


 
 
Mahalo Dollars are the currency of Mahalo Answers.

Each Mahalo Dollar costs $1.

Once you earn more than 40 Mahalo Dollars, you can request to be paid via PayPal. Each Mahalo Dollar is currently worth $0.75 when paid out via PayPal. Learn More

 
 

Please log in to use this function.