I am very new to ffmpeg and beanstalk and I need a little help. I want to use beanstalk for file queue for ffmpeg for conversion. I downloaded, installed and started beanstalkd (also installed libevent, as it suggests), and I downloaded the PHP client for beanstalkd;
http://sourceforge.net/projects/beanstalk/
Now, after loading the client and placing it on my server, I did nothing but an example from the client, and I get this error;
Fatal error : maximum run time of 30 seconds exceeded in /Users/wasimkhamlichi/Sites/vibenation/beanstalk/src/BeanStalk.class.php on line 1138
This is the code from the example;
$beanstalk = BeanStalk::open(array( 'servers' => array( '127.0.0.1:11300' ), 'select' => 'random peek' ));
Very simple fast script just say hello, but this time. Can anyone help?
source share