electricbrain's Avatar
electricbrain 4
8 Asked
36 Answered
7 Best
0
No one has voted on this question yet :(
3 years, 2 months ago

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.
Tip for best answer: M$1.00
Separate topics with commas, or by pressing return. Use the delete or backspace key to edit or remove existing topics.

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

What is Your Answer?

0
0
0

2 Answers

0
ans's Avatar
ans | 3 years, 2 months ago
3
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).

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel
0
ebarrera's Avatar
ebarrera | 3 years, 2 months ago
4
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

You can leave an optional "tip" with Mahalo's virtual currency, Mahalo Dollars. If you are asking a difficult question that might require some research, or if you'd like a wide variety of feedback, a higher tip often leads to more answers to your question.

M$

Report Abuse

Post Reply Cancel

Learn something new with our FREE educational apps!

Private lessons in the comfort of your own home. Get back in shape or finally pick up a guitar with our great experts guiding you the whole way!
Learn Guitar
Learn Hip Hop
Learn Pilates