2017-08-13 72 views
0

我按照命令,在github上找到的參考了很多,但它返回一個大對象,而不能訪問期間無法取得持續時間的FFmpeg laravel

這裏是我的代碼

$ffprobe = \FFMpeg\FFProbe::create(); 
    $ffprobe 
     ->format($file) // extracts file informations 
     ->get('duration');    // returns the duration property 

    dd($ffprobe); 

enter image description here

如果我使用回聲或返回它會給我錯誤

Object of class FFMpeg\FFProbe could not be converted to string 

回答

0

看起來像你試圖回顯FFProb的實例不是持續時間。這個怎麼樣:

$duration = FFMpeg\FFProbe::create() 
     ->format($file) 
     ->get('duration'); 

echo $duration; 
+0

它的工作原理!該文件令我感到困惑 – chengwei