gpt4 book ai didi

javascript - 循环更改视频分辨率

转载 作者:行者123 更新时间:2023-12-04 09:22:35 26 4
gpt4 key购买 nike

我正在尝试将视频的分辨率降低到 500x500 以下。我不想将其更改为 500x500,因为这会影响视频质量。所以我想要做的是在一个循环中将分辨率降低 75%,并且该循环只会在视频低于 500x500 时停止。理论上这并不难,但我似乎无法弄清楚。

var vidwidth = 501; //Create variable and put it to 501
var vidheight = 501; //so that it won't go through the If Statement
fs.copyFile(filepath2, './media/media.mp4', (err: any) => { //Copy given file to directory
console.log('filepath2 was copied to media.mp4'); //Log confirmation (Not appearing for some reason, but file is copied)
})
while (true) {
getDimensions('./media/media.mp4').then(function (dimensions: any) { //Get dimensions of copied video
var vidwidth = parseInt(dimensions.width) //Parse to Int
var vidheight = parseInt(dimensions.height) //and put in variables
})
ffmpeg('./media/media.mp4') //Call ffmpeg function with copied video path
.output('./media/media.mp4') //Set output to the same file so we can loop it
.size('75%') //Reduce resolution by 75%
.on('end', function() { //Log confirmation on end
console.log('Finished processing'); //(Not appearing)
}) //
.run(); //Run function
if (vidwidth < 500 && vidheight < 500) { //Check if both the width and height is under 500px
break; //If true, break the loop and continue
}
}
这是我在注释中使用的当前代码。基本上发生的情况是它卡在 while 循环中,因为视频的尺寸不会改变。经 console.log() 测试线。我认为,如果我能以某种方式解决 ffmpeg 问题,一切都会得到解决。
我会很感激任何帮助:)
PS:这都是用typescript制作的,然后用 npx tsc构建成js

最佳答案

问题是循环阻止回调被调用,因为 javascript 在一个线程上运行(在另一个 SO 问题中了解更多信息:Callback of an asynchronous function is never called)。没有被调用的回调之一是 then 的回调。其中变量vidwidthvidheight得到更改,因此检查它们是否小于 500 并最终中断循环的条件永远不会是 true并且循环永远运行。无论如何,这不是处理异步函数的正确方法(在另一个 SO 问题中了解更多信息:How do I return the response from an asynchronous call?)。
顺便说一句,copyFilewhile这种工作根本不需要循环,你可以使用 getDimensions要获得视频的尺寸,请根据它们计算所需的尺寸并开始 ffmpeg任务( ffmpeg 将在不更改输入文件的情况下处理结果文件的创建,因此不需要 copyFile )。像这样:

getDimensions(filepath2).then((dimensions: any) => {                            // get the dimension of the input file
let sizeStr = dimensions.width < dimensions.height ? "?x500" : "500x?"; // if width is smaller than height, reduce the height to 500 and calculate width based on that, same goes for the other way around

ffmpeg(filepath2) // the input is the original video, don't worry 'ffmpeg' won't alter the input file
.output('./media/media.mp4') // the output file path
.size(sizeStr) // use the 'sizeStr' string calculated previously (read more about it here: https://github.com/fluent-ffmpeg/node-fluent-ffmpeg#video-frame-size-options)
.on('end', () => console.log('Finished processing'))
.run();
});
就如此容易!

关于javascript - 循环更改视频分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63074579/

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