如何同时将视频上传到 s3 创建缩略图并使用 nodejs 将其保存到同一存储桶中的另一个文件夹?

How can I upload a video to s3 at the same time create a thumbnail for the same and save it to another folder in the same bucket using nodejs?

我目前正在使用 multer 将视频带到我的后端,然后我使用 ffmpeg 生成缩略图并同时上传视频。我阅读了 s3 presigned url 的文档,它与缩略图无关。我当前的代码使用 multer。我想摆脱它,因为 API 会花费很多时间,当然还会增加我的服务器负载。

所以这对我有用 -> 先安装@ffmpeg-installer 和@ffprobe-installer 这样你就不用手动安装了,把这两个库的路径传入fluent-ffmpeg 就可以用来提取视频细节了(我需要它使屏幕截图大小根据传入的视频动态变化) const ffmpeg = require('fluent-ffmpeg');

const ffmpeg = require('fluent-ffmpeg');
const ffmpegPath = require('@ffmpeg-installer/ffmpeg').path;
const ffprobePath = require('@ffprobe-installer/ffprobe').path;
ffmpeg.setFfmpegPath(ffmpegPath);
ffmpeg.setFfprobePath(ffprobePath);

//EXTRACT VIDEO DETAILS USING ffprobe (I am using multer)
ffmpeg.ffprobe('path_to_file', (err, data)=>{
    // take out height and width and decrease it (depending on your requirement)
    ffmpeg('path_to_file')
    .screenshots({
    timestamps: ["00:01"],
    filename: `${filename}.jpeg`,
    folder: "to/wherever/you/want",
    count: 1,
    size: `${width}x${height}`,//getting this from ffprobe
     }).on("end", ()=> {
         //upload file in 'to/wherever/you/want'(thumbnail) to s3
         //upload the video as well to s3
     })

})