2
<?php
$ffmpeg = 'C:\ffmpeg\ffmpeg.exe';  

//video dir  
$video = 'C:\Users\Public\Videos\Sample Videos\upload.mp4';  
echo $video ;
//where to save the image  
$image = 'C:\ffmpeg\image\image.jpg';  

//time to take screenshot at  
$interval = 5;  

//screenshot size  pn 
$size = '640x480';  

//ffmpeg command  
//$cmd = "$ffmpeg -i ".$video "-deinterlace -an -ss".$interval". -f mjpeg -t 1 -r 1 -y    -s". $size." ". $image." 2>&1";  
$cmd="$ffmpeg -i ".$video." -ss 00:00:14.435 -f image2 -vframes 1 ".$image;
echo $cmd
//$cmd = "$ffmpeg  -i $video -f mjpeg -vframes 1 -s 150x150 -an myimage.jpg";
exec($cmd);
//$return = '$cmd';  
//print_r($outputData);
?>

我想从视频文件创建 thunbnail。我已将 ffmpeg 正确配置为 xamp,如 phpinfo 中所示。我的代码运行正常,没有显示错误。但视频缩略图不在生成位置。请给我源代码。如果有可能 。它非常紧急

4

1 回答 1

1

您的视频路径包含空格,因此必须引用

改变

$video = 'C:\Users\Public\Videos\Sample Videos\upload.mp4'; 

$video = '"C:\Users\Public\Videos\Sample Videos\upload.mp4"'; 
于 2012-11-02T08:25:05.613 回答