<?php
require '../config.php';
$fid = trim(check($_GET['fid']));
$frame = 10; // какой кадр
// получаем кадр
$movie = new ffmpeg_movie($fid);
$image = $movie->getFrame($frame);
$show_img = $image->toGDImage();
// выводим его
header('Content-type: image/gif');
imagegif($show_img);
imagedestroy($show_img);
?>