2012-11-02 108 views
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中顯示。我的代碼運行正常,沒有錯誤顯示。 但視頻拇指釘是沒有生成的地方。 請爲我提供源代碼。如果可能 。它非常緊迫如何在xamp中創建ffmpeg的視頻縮略圖php

回答

1

您對視頻路徑中包含空格,所以必須用引號引起來

變化

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

$video = '"C:\Users\Public\Videos\Sample Videos\upload.mp4"'; 
相關問題