答案 0 :(得分:1)
使用
setpts
atempo
过滤器将视频帧时间戳更改为其当前值的1 / 1.1。 FFmpeg将在保持源帧速率所需的节奏中丢帧。
-map 1:v -map 0:a
过滤器可将音频速度提高到原始速度的1.1倍。
-shortest
告诉ffmpeg包含来自第二个输入(6m.mp4)的视频流和来自第一个输入的音频。
template <class... Points>
point barycentre(Points... points) {
point const sum{
(points.x_ + ...),
(points.y_ + ...)
};
int const num = sizeof...(Points);
return {
sum.x_ / num,
sum.y_ / num
};
}
告诉ffmpeg在较短(音频和视频)流结束时结束转换。