Файл: shared_zone/get_video.php
Строк: 11
<?php
include('../sys/pdo_class.php');
$id = abs(intval($_GET['id']));
$filez = DB::run() -> queryFetch("SELECT * FROM files WHERE id =?",array($id));
$type = $filez['type'];
// путь до файла
if($type == 'mp4' || $type == 'avi' || $type == '3gp' || $type == 'rmvb' || $type == 'wmv' || $type == 'mkv' || $type == 'mpg' || $type == 'mov' || $type == 'vob' || $type == 'flv'){
$file = "../obmen/files/".$filez['name']."";
// кадр который будем выхватывать
$movie = new ffmpeg_movie($file);
$frame = rand(1,$movie->getFrameCount());
// получаем кадр
$image = $movie->getFrame($frame);
$show_img = $image->toGDImage();
// выводим его
header("Content-type: image/jpeg");
imagejpeg($show_img);
imagedestroy($show_img);
}
?>