寻找可与 Google App Engine 配合使用的 python 视频编辑/处理功能

发布于 2024-11-26 20:36:26 字数 109 浏览 1 评论 0原文

是否知道任何可与 Google App Engine 配合使用的 python 视频编辑/处理库或框架?我需要在我的 App Engine 网站上以语法方式编辑视频文件(添加配乐、在顶部分层视频剪辑等)。

Does know any python video editing/processing libraries or frameworks that work with Google App Engine? I need to pro grammatically edit video files (adding a soundtrack, layering video clips on top etc.) on my App Engine site.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

空心空情空意 2024-12-03 20:36:26

由于大多数视频/音频编解码器都是用 C 语言编写的,以实现最大的可移植性,并且任何复用库都是用 C 语言编写的,以提高处理大字节流的速度,因此在纯 Python 库中找到这些功能将很困难。

如果你只能将自己束缚在一个编解码器/容器格式上,你可能可以将一些东西移植到纯Python,但如果你想在纯Python中构建像ffmpeg这样多样化的东西,你会遇到很长的困难。

我不会推荐 AppEngine 执行此类任务,即使有后端,我认为您会通过在 AppEninge 上强制执行此任务来分别限制自己,并且使您的任务比您查看替代解决方案时要困难得多。

我会给自己一个 VPS 或 EC2 实例,围绕 ffmpeg 构建一个小型 Web 服务,然后从我的 main 向其发送任务AppEngine 应用程序。

With most video/audio codecs written in C for maximum portability, and any muxing libraries being written in C for speed working with large byte streams, finding these features in pure python libraries is going to be difficult.

If you could tie yourself down to just a single codec/container format you could probably port something to pure python but you're in for a long slog if you want to build something as diverse as ffmpeg in pure python.

I would not recommend this sort of task for AppEngine, even with backends, I think you would be severally limiting yourself by forcing this on AppEninge as well as making your task much harder than it would be if you looked at alternative solutions.

I would get myself a VPS or EC2 instance, build a little webservice around ffmpeg and send tasks to it from my main AppEngine application.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文