gpt4 book ai didi

node.js - 流利的 ffmpeg 与裁剪的宽高比

转载 作者:行者123 更新时间:2023-12-04 10:21:38 26 4
gpt4 key购买 nike

我在使用 fluent-ffmpeg 更改 16:9、1:1 和 9:16 之间的宽高比时遇到问题当我尝试从 16:9 更改为 9:16 时,我收到了一个压缩的视频,但实际上我希望删除多余的部分。

我尝试了很多组合:

FFmpeg()
.输入(视频)
.size("608x?")
.aspect("9:16")
.output(临时文件)
.run();

我输入的 16:9 视频 1920x1080 My input 16:9 video 1920x1080

.

我的预期结果 9:16 视频 608x1080

My Expected result 9:16 video 608x1080

最佳答案

我提出的最佳解决方案:
由于 Fluent-ffmpeg 不提供任何内置方法来裁剪和缩放视频,因此我们需要自己实现它。

第 1 步:
我们需要计算中间裁剪分辨率,以通过裁剪多余部分(横向到纵向)或添加黑条(纵向到横向)来实现目标宽高比,以避免视频的挤压或拉伸(stretch)。

注意:
我们还可以在纵向到横向的情况下添加漂亮的模糊效果,但这会增加一个额外的步骤(需要 ffmpeg 模糊过滤器)。

第 2 步:
我们将简单地放大或缩小到我们的目标分辨率。

代码似乎太长了,但相信我,它很简单并且分为多个方法。从底层开始理解。
如果您想要 JavaScript 版本,请忽略类型

只需运行此代码,它就会为您裁剪/缩放单个视频。

import * as FFmpeg from "fluent-ffmpeg";

function resizingFFmpeg(
video: string,
width: number,
height: number,
tempFile: string,
autoPad?: boolean,
padColor?: string
): Promise<string> {
return new Promise((res, rej) => {
let ff = FFmpeg().input(video).size(`${width}x${height}`);
autoPad ? (ff = ff.autoPad(autoPad, padColor)) : null;
ff.output(tempFile)
.on("start", function (commandLine) {
console.log("Spawned FFmpeg with command: " + commandLine);
console.log("Start resizingFFmpeg:", video);
})
// .on("progress", function(progress) {
// console.log(progress);
// })
.on("error", function (err) {
console.log("Problem performing ffmpeg function");
rej(err);
})
.on("end", function () {
console.log("End resizingFFmpeg:", tempFile);
res(tempFile);
})
.run();
});
}

function videoCropCenterFFmpeg(
video: string,
w: number,
h: number,
tempFile: string
): Promise<string> {
return new Promise((res, rej) => {
FFmpeg()
.input(video)
.videoFilters([
{
filter: "crop",
options: {
w,
h,
},
},
])
.output(tempFile)
.on("start", function (commandLine) {
console.log("Spawned FFmpeg with command: " + commandLine);
console.log("Start videoCropCenterFFmpeg:", video);
})
// .on("progress", function(progress) {
// console.log(progress);
// })
.on("error", function (err) {
console.log("Problem performing ffmpeg function");
rej(err);
})
.on("end", function () {
console.log("End videoCropCenterFFmpeg:", tempFile);
res(tempFile);
})
.run();
});
}

function getDimentions(media: string) {
console.log("Getting Dimentions from:", media);
return new Promise<{ width: number; height: number }>((res, rej) => {
FFmpeg.ffprobe(media, async function (err, metadata) {
if (err) {
console.log("Error occured while getting dimensions of:", media);
rej(err);
}
res({
width: metadata.streams[0].width,
height: metadata.streams[0].height,
});
});
});
}

async function videoScale(video: string, newWidth: number, newHeight: number) {
const output = "scaledOutput.mp4";
const { width, height } = await getDimentions(video);
if ((width / height).toFixed(2) > (newWidth / newHeight).toFixed(2)) {
// y=0 case
// landscape to potrait case
const x = width - (newWidth / newHeight) * height;
console.log(`New Intrim Res: ${width - x}x${height}`);
const cropping = "tempCropped-" + output;
let cropped = await videoCropCenterFFmpeg(
video,
width - x,
height,
cropping
);
let resized = await resizingFFmpeg(cropped, newWidth, newHeight, output);
// unlink temp cropping file
// fs.unlink(cropping, (err) => {
// if (err) console.log(err);
// console.log(`Temp file ${cropping} deleted Successfuly...`);
// });
return resized;
} else if ((width / height).toFixed(2) < (newWidth / newHeight).toFixed(2)) {
// x=0 case
// potrait to landscape case
// calculate crop or resize with padding or blur sides
// or just return with black bars on the side
return await resizingFFmpeg(video, newWidth, newHeight, output, true);
} else {
console.log("Same Aspect Ratio forward for resizing");
return await resizingFFmpeg(video, newWidth, newHeight, output);
}
}

videoScale("./path-to-some-video.mp4", 270, 480);

关于node.js - 流利的 ffmpeg 与裁剪的宽高比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60822430/

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