views:

111

answers:

2

We need to write a script that needs to process movies (using C-based ffmpeg) and also update our databases. Also there would be some thread programming to accomplish with a worker-manager design. I am thinking of writing this in Ruby is there any good language to do this, if so what is its primary advantage for choosing?

We are based on the Mac platform.

Thanks in advance.

A: 

For the Mac, and if you are going to use something written in C, I would definitively use Objective-C, with the Cocoa framework. It's just the native way and primary language for OSX and it's very close to C. Might be good for dealing with ffmpeg.

Macmade
Just saw you specified a 'script'... Then not Obj-C... But is it really necessary to have a script?
Macmade
A: 

Ruby is built in with os/x (at least in newer versions), and its a great script language.

Development 4.0