php中使用 ffmpeg(部分程式碼)

乘風破浪__發表於2022-03-21

1.下載php-ffmpeg

composer require php-ffmpeg/php-ffmpeg

2.php開啟的一些禁用函式: proc_open, exec, system
3.部分程式碼(以tp5.1為例)

//linux
$config = [
    'ffmpeg.binaries'  => '/usr/bin/ffmpeg',
    'ffprobe.binaries' =>  '/usr/bin/ffprobe',
    'timeout' => 3600,
    'ffmpeg.threads' => 0,
];
//window
$config = [
    'ffmpeg.binaries' => 'D:\ffmpeg\bin\ffmpeg.exe',//ffmpeg中bin目錄下的ffmpeg路徑
    'ffprobe.binaries' => 'D:\ffmpeg\bin\ffprobe.exe',//ffmpeg中bin目錄下的ffprobe路徑
    'timeout' => 3600,
    'ffmpeg.threads' => 0,
];
$ffprobe = FFProbe::create($config);
$ffmpeg = FFMpeg::create($config);
/* 提取第一幀為背景圖 */
$img_dir = Env::get('root_path').'/public/static/video/11_res.jpg';//公共檔案
$video->frame(\FFMpeg\Coordinate\TimeCode::fromSeconds(0))->save($img_dir);
copy($img_dir,$video_img);//複製檔案
/* 影片轉碼 */
$video->save(new\FFMpeg\Format\Video\X264(),'F:\mywork\newbeita\public\static\video\ceshi.mp4');
/* 獲取影片大小 */
$videoDuration =$ffprobe->format('/static/video/407efafdc8c5f0a1245a2eca227f315a.mp4')->get('duration');
本作品採用《CC 協議》,轉載必須註明作者和本文連結

相關文章