如何同时将视频上传到 s3 为其创建缩略图并使用 nodejs 将其保存到同一存储桶中的另一个文件夹中?
Posted
技术标签:
【中文标题】如何同时将视频上传到 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? 【发布时间】:2021-05-04 08:28:21 【问题描述】:我目前正在使用multer
将视频带到我的后端,然后我使用ffmpeg
生成缩略图并同时上传视频。我阅读了s3 presigned url
的文档,它与缩略图无关。我当前的代码使用multer
。我想摆脱它,因为 API 需要花费大量时间,而且当然会增加我的服务器负载。
【问题讨论】:
加载视频所需的 api 可能是由于文件大小,理想情况下,您希望在上传视频之前对其进行压缩,而且我会说缩略图在同一个存储桶中会很好与视频一起,因为您不会在没有另一个的情况下加载一个,我认为将它们分成 2 个存储桶可能对加载速度几乎没有影响。请发布您的代码,以便我可以更好地理解。 @Erykj97 谢谢,我没有意识到视频太大,所以我告诉我的朋友在将其发送到后端之前将其压缩更多。此外,我发现我的问题的解决方案将在几个小时内发布。 【参考方案1】:所以这对我有用 -> 首先安装@ffmpeg-installer 和@ffprobe-installer 这样你就不必手动安装它们并将这2个库的路径传递给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: `$widthx$height`,//getting this from ffprobe
).on("end", ()=>
//upload file in 'to/wherever/you/want'(thumbnail) to s3
//upload the video as well to s3
)
)
【讨论】:
以上是关于如何同时将视频上传到 s3 为其创建缩略图并使用 nodejs 将其保存到同一存储桶中的另一个文件夹中?的主要内容,如果未能解决你的问题,请参考以下文章
使用 attachment_fu,您如何编辑现有照片、仅更新缩略图并保留原始未编辑?