-
How to take screen shot of video size by ffmpeg
Hi,
I want to take screen shot of size of the video. How can if take it , as now i can take the screen shot of this size like 120×90 by following code.
$cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -s 120x90 -vcodec mjpeg -f mjpeg $image 2>&1";Please suggest .
Thanks