Hi,
I am having problem with creating thumbnail this is my code
$ffmpeg=$_SERVER['DOCUMENT_ROOT'].'/***/ffmpeg';
$image=$_SERVER['DOCUMENT_ROOT'].'/***/***/***/'."$id.jpg";
$video =$_SERVER['DOCUMENT_ROOT'].'/***/***/'."$uname";
$cmds = "$ffmpeg -i $video -deinterlace -an -ss 1 -t 00:00:01 -r 1 -y -s 100x90 -vcodec mjpeg -f mjpeg $image 2>&1";
exec($cmds);
Whenever i try to make thumbnail it gives me an error 'access is denied.
Can anyone help me thanx in advance