gpt4 book ai didi

php - 如何使用 PHP-FFMpeg 将视频修剪 4 个片段到 4 秒?

转载 作者:行者123 更新时间:2023-12-04 22:58:19 25 4
gpt4 key购买 nike

如何使用 修剪视频PHP-FFMpeg ?
我需要执行以下 FFMpeg 命令:

ffmpeg -i 7207783801bb.mp4 -filter_complex \
"[0:v]trim=start=10:end=11,setpts=PTS-STARTPTS[a]; \
[0:v]trim=start=20:end=21,setpts=PTS-STARTPTS[b]; \
[a][b]concat[c]; \
[0:v]trim=start=30:end=31,setpts=PTS-STARTPTS[d]; \
[0:v]trim=start=40:end=41,setpts=PTS-STARTPTS[f]; \
[d][f]concat[g]; \
[c][g]concat[out1]" -map [out1] 7207783801bbout.mp4

当我使用以下代码时:
$ffmpeg = FFMpeg\FFMpeg::create();
$video = $ffmpeg->open('7207783801bb.mpg');
$video->filters()->clip(FFMpeg\Coordinate\TimeCode::fromSeconds(10), FFMpeg\Coordinate\TimeCode::fromSeconds(11));
$video->filters()->clip(FFMpeg\Coordinate\TimeCode::fromSeconds(20), FFMpeg\Coordinate\TimeCode::fromSeconds(21));
$video->filters()->clip(FFMpeg\Coordinate\TimeCode::fromSeconds(30), FFMpeg\Coordinate\TimeCode::fromSeconds(31));
$video->filters()->clip(FFMpeg\Coordinate\TimeCode::fromSeconds(40), FFMpeg\Coordinate\TimeCode::fromSeconds(41));
$video->save(new FFMpeg\Format\Video\X264(), '7207783801bbout.mp4');

然后我只得到 40 秒的视频。
我需要使用 获得 10-11、20-21、30-31、40-41 秒PHP-FFMpeg .只有4秒。

最佳答案

来自 manual pages

Clip

The clip filter takes twoparameters:

$start, an instance of FFMpeg\Coordinate\TimeCode, specifies the startpoint of the clip

$duration, optional, an instance of FFMpeg\Coordinate\TimeCode, specifies the duration of the clip


(强调我的)
所以你的第二个参数需要是 1 而不是(例如)11,因为它是剪辑持续时间......
$video->filters()->clip(FFMpeg\Coordinate\TimeCode::fromSeconds(10),
FFMpeg\Coordinate\TimeCode::fromSeconds(1));

关于php - 如何使用 PHP-FFMpeg 将视频修剪 4 个片段到 4 秒?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61835574/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com