0
我按照命令,在github上找到的參考了很多,但它返回一個大對象,而不能訪問期間無法取得持續時間的FFmpeg laravel
這裏是我的代碼
$ffprobe = \FFMpeg\FFProbe::create();
$ffprobe
->format($file) // extracts file informations
->get('duration'); // returns the duration property
dd($ffprobe);
如果我使用回聲或返回它會給我錯誤
Object of class FFMpeg\FFProbe could not be converted to string
它的工作原理!該文件令我感到困惑 – chengwei