gpt4 book ai didi

reactjs - Firebase 云函数压缩视频

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

我已经使用 React Native 和 firebase 在我的应用程序中成功实现了视频共享,但我想确保存储的视频不超过 1080x1080(可能是 720,具体取决于它的外观)。

视频最长 8 秒,如果可能,我会尽力将每个视频控制在 5MB 以下。我能够在客户端进行一些压缩(裁剪为正方形/修剪),但我希望能够通过云功能(存储触发器)进一步压缩视频而不会损失质量。

环顾四周后,它看起来像 Moviepy是一个不错的选择,但它使用的是 python,我不确定如何在云函数存储触发器中使用此脚本。

这是它的样子:

//Not sure how this will import
import moviepy.editor as mp

//Can I get the video here from the bucket path in a cloud function?
clip = mp.VideoFileClip("video-stored.mp4")

clip_resized = clip.resize(height=1080) # make the height 1080px ( According to moviePy documenation The width is then computed so that the width/height ratio is conserved.)

//resize video, then we need to store it in the same location (same file path)
clip_resized.write_videofile("video-stored-resized.mp4")

我很想听听一些关于通过云函数进行视频压缩的建议,以及关于将上述脚本/模块与云函数一起使用的想法。

最佳答案

此时,firebase 函数不支持 node.js 以外的语言。因此,有 2 个解决方案。

  1. 如果您想继续使用 moviepy。当在 node.js 中触发 firebase 存储并在任何首选环境中使用 python api 时,编写一个部分来调用与 moviepy 相关的 api。 (我想你应该使用 gcp 提供的 pubsub 来调用 python apis)

  2. 在 node.js 中编写所有部分node.js 中也有一个名为 fluent-ffmepg 的很棒的模块,但我知道在该模块中添加水印并不像 moviepy 那样容易...

顺便说一句,当我尝试在firebase函数中组合vids时,我没能做到,可能是因为环境的限制。所以,我个人推荐第一种解决方案:当然这取决于你的情况,比如你的视频文件有多大。

关于reactjs - Firebase 云函数压缩视频,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61292799/

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