$command = "ffmpeg -i '" . $img_full_name . "' -vf scale=200:200 '" . $img_thumb_name . "'" ;
$output=shell_exec($command);
echo $output;
die;
I am using this code to execute command in php but it gives me blank out put. Same command works if I Directly execute it on ssh.