[partially solved] convert video (system cmd problem)
Posted: Sun Aug 19, 2007 7:50 pm
hello,
im trying to use ffmpeg...
using this php code for running commands works:
but when i put
im running latest apache, php and mysql.
whats wrong?
thanks,
ben
im trying to use ffmpeg...
using this php code for running commands works:
Code: Select all
<?php
echo '<pre>';
// Outputs all the result of shellcommand "ls", and returns
// the last output line into $last_line. Stores the return value
// of the shell command in $retval.
$last_line = system('ipconfig', $retval);
// Printing additional info
echo '
</pre>
<hr />Last line of the output: ' . $last_line . '
<hr />Return value: ' . $retval;
?>for the command it just wont run?D:\inetpub\software\ffmpeg\bin\ffmpeg.exe -i test.wmv out.avi
im running latest apache, php and mysql.
whats wrong?
thanks,
ben