Hi,
i am working on ffmpeg as i done it on my local computer XP fine but it giving me error on winow server 2003 as exec is working fine because when i run this command
exec("whoami",$res,$res2);
print_r($res);
it return me : Array ( [0] => caronet-4agcutk\iwpd_4(relaxpkftp) )
but when i run this command:
exec("C:\ffmpeg\ffmpeg -i C:\videos\1.avi -r 23 -ab 32 -ar 22050 -b 50000 -f flv -s 320x240 C:\videos\1.flv",$res,$res2);
$res give me empty array and $res2 (Error Code) return me 1
if i run above command in cmd (dos) then it work fine.
I think thier is little bit security which i am missing to understand.
Can anybody guid me?