Fluent-ffmpeg 不会 process/do 任何带有视频的东西 - Nodejs

Fluent-ffmpeg won't process/do anything with videos - Nodejs

我有这个代码:

const ffmpegPath = require("@ffmpeg-installer/ffmpeg").path;
const ffmpeg = require("fluent-ffmpeg");
ffmpeg.setFfmpegPath(ffmpegPath);

app.put("/upload-content", async (req, res) => {
  // 1. Get video and save locally to the server
  const video = req.files.video;
  const localTempPath = "./tmp/" + video.name;
  video.mv(localTempPath, function (error) {
      if (error) return res.send(error);
  });
  // 2. Convert video and apply settings
  processVideo(localTempPath).catch((err) => {
    return res.send(err);
  });
  return res.send("done");
});

function processVideo(localTempPath) {
  return new Promise((resolve, reject) => {
    ffmpeg(localTempPath)
    .withVideoCodec("libx264")
    .withSize("630x320")
    .withOutputFormat("avi")
    .on("error", (error) => reject("Failed to process video: " + error))
    .on("progress", (progress) => console.log(progress))
    .on("end", resolve("Successfully processed video"))
    .saveToFile(localTempPath);
  });
}

没有任何效果,我试过只带走音频,试过改变视频编解码器,试过输出而不是保存,在承诺之外试过。我也尝试过不同的路径等。 发送请求后,res.send('done') 实际上会立即发送,因此它的清除也不是 运行ning,没有错误,而且我知道函数正在得到 运行 正如我所说其中的调试语句...仍然没有。

几个问题。您不是在等待 mv 回调。要么也让它成为一个承诺,要么 运行 回调后的代码。试试这个。

const ffmpegPath = require("@ffmpeg-installer/ffmpeg").path;
const ffmpeg = require("fluent-ffmpeg");
ffmpeg.setFfmpegPath(ffmpegPath);

app.put("/upload-content", async(req, res) => {
    try {
        // 1. Get video and save locally to the server
        const video = req.files.video;
        const localTempPath = "./tmp/" + video.name;
        video.mv(localTempPath, async function(error) {
            if (error) return res.send(error);
            const resp = await processVideo(localTempPath);
            return res.send("done");
        });

    } catch (err) {
        return res.send(error);
    }
});

function processVideo(localTempPath) {
     return new Promise((resolve, reject) => {
    ffmpeg()
        .input(localTempPath)
        .withVideoCodec("libx264")
        .withSize("630x320")
        .withOutputFormat("avi")
        .on("error", (error) => reject("Failed to process video: " + error))
        .output(newpath)
        .on("progress", (progress) => console.log(progress))
        .on('end', function() {
            console.log('Finished processing');
        })
        .run();
});;
}

要么让这个函数成为一个承诺,要么在它回调后执行。

video.mv(localTempPath, function (error) {
      if (error) return res.send(error);
 // save file if nothing went wrong. Also wait for processVideo to complete.
  });