Closed (fixed)
Project:
Blue Droplet Video
Version:
6.x-1.x-dev
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Reporter:
Created:
25 Oct 2009 at 10:53 UTC
Updated:
16 Nov 2009 at 05:20 UTC
got transcoding failure.
debugging with cron.php output (see #613742 ) said "sh: time: unknown command".
Comments
Comment #1
geek-merlinso what might have happened?
bd_video inserts 'time' before the ffmpeg call to output timing info.
but, afaik 'time' is a bash reserved word, and my exec uses another shell!
solution: use time feature only if available.
in bd_video.module line 401.. change (patch to follow)
to
Comment #2
matt2000 commentedsame issue. You'd think there would be a way to specify which shell to use in php.ini. If there is, I can't find any documentation on it...
Comment #3
jbrown commentedI thought the 'time' command was available on any unix system, but it this has proven to be incorrect.
I've ripped out the use of the 'time'.
Might reimplement with microtime() and push timing info out into the watchdog.
http://drupal.org/cvs?commit=282756