gpt4 book ai didi

javascript - 在 ffmpeg 中使用内容类型的 quicktime 抛出错误 `moov not found`

转载 作者:行者123 更新时间:2023-12-04 23:24:06 24 4
gpt4 key购买 nike

所以我的程序设置为下载视频并将其流式传输到文件中。这些视频是 .mp4 和 .mov。

问题是 .mov 文件不起作用,我认为这只是我流式传输文件的方式。但我不确定。因为 .mp4 文件没有任何错误。但是当我使用 .mov 文件时,我收到一条错误消息

Powershell Errors: [mov,mp4,m4a,3gp,3g2,mj2 @ 000002707b9cb700] moov atom not found



这来自这个powershell脚本:
ffmpeg -i $Args[0] -vcodec copy -acodec copy -movflags +faststart $Args[1]
调用该脚本的代码如下:
    streamVideos_PROMISES.push(
axios({
method: "get",
url: video.url,
responseType: "stream"
})
);
}
});
Promise.all(streamVideos_PROMISES)
.then(function(response) {
response.map(response_item => {
let tempFileName = new Date().valueOf();
let videoType = response_item.headers["content-type"].split("/")[1];
if (videoType === "quicktime") videoType = "mov"; <---Maybe the issue?
const file = fs.createWriteStream(
`./cache/videos/${tempFileName + "."}${videoType}`
);
var spawn = require("child_process").spawn,
child;
response_item.data.pipe(file);
child = spawn("powershell.exe", [
"./scripts/ffmpeg_convert.ps1",
`./cache/videos/${tempFileName + "."}${videoType}`,
` ./cache/converted_videos/${tempFileName + "."}${videoType}`
]);
child.stdout.on("data", function(data) {
console.log("Powershell Data: " + data);
});
child.stderr.on("data", function(data) {
console.log("Powershell Errors: " + data);
});
child.on("exit", function() {
console.log("Finished converting thumbnails");
return thumbsupply.generateThumbnail(
`./cache/converted_videos/${tempFileName + "."}${videoType}`,
{
mimetype: response_item.headers["content-type"]
}
);
});
child.stdin.end(); //end input
});
})
.catch(err => {
console.log(err);
res.status(500).json({ Error: "Could not generate thumbnail" });
});

注意 response_item.headers["content-type"].split("/")因为 .mov 是快速的,所以我认为我可以交换扩展名......这可能是错误的。

编辑
所以我手动输入 $args如下:
ffmpeg -i "./cache/videos/1556897345129.mov" -vcodec copy -acodec copy -movflags +faststart "./cache/converted_videos/are_you_kidding_me.mov"

它有效。

编辑 2
child = spawn("powershell.exe", [
"./scripts/ffmpeg_convert.ps1",
"./cache/videos/1556897345129.mov", <-- Using the string literal works.
` ./cache/converted_videos/${tempFileName + "."}${videoType}`
]);

最佳答案

MOV 和 MP4 使用相同的内部结构。 MP4只是MOV被ISO标准化后的名称,因此两者之间的重命名没有问题。

在尝试从中提取任何内容之前,您应该等到您的视频文件完全写入。

关于javascript - 在 ffmpeg 中使用内容类型的 quicktime 抛出错误 `moov not found`,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55958600/

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