Looking for python video editing/processing capabilities that will work with Google App Engine

梦想与她 提交于 2019-12-10 21:52:25

问题


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.


回答1:


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.



来源:https://stackoverflow.com/questions/6872388/looking-for-python-video-editing-processing-capabilities-that-will-work-with-goo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!