如何在 Google App Engine 上使用纯 python 将 mpeg-4 转换为 mp3 或 wave 格式?
我正在开发一个项目,使用在 Google App Engine 上运行的 Python。该项目必须允许用户上传 mpeg-4 音频文件以供其他人播放。有没有办法在服务器端将 mpeg-4 转换为 mp3/wav?
有人能提供解决方案吗?非常感谢任何帮助。
I'm working on a project, using Python running on Google App Engine. The project must allow users to upload mpeg-4 audio file for others to playback. Is there a way to convert mpeg-4 to mp3/wav on the server side?
Could anyone offer a solution to this? Any help is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Google App Engine 专为轻量级 HTTP 请求和面向用户的 Web 应用程序而设计。
视频/音频转码是一项繁重活动,可能会立即耗尽您的可用 CPU 配额。
如果可以的话,将转码任务外包给一些第三方服务,例如 Zencoder、Heywatch 或 Encoding.com 。
Google App Engine is designed for lightweight HTTP requests and user-facing Web application.
Video/audio transcoding is an Heavy activity that would probably deplete your available CPU quota in no time.
If you can, outsource the transcoding Task to some third-party service like Zencoder, Heywatch or Encoding.com .