Video website on google application engine

余生长醉 提交于 2019-12-03 17:11:02

Yes, this is practical. You'll probably want to check out the blobstore for uploading and serving your videos. Conversion will be a little trickier, since you can't do it directly on App Engine - you'll need to use an external service, and either set things up so your users upload directly to that, or have the service download, transcode, and re-upload videos to your App Engine site.

As Nick pointed out, it can be done and it won't be a straight forward implementation.

I would suggest using the Amazon EC2 service for video conversion and Amazon S3 for storing of videos while using App Engine for creating a fast reliable and unbelievably scalable front-end.

Yeah, you are going to hit all the app engine quotas relating to bandwidth and storage very quickly. Check this page: http://code.google.com/appengine/docs/quotas.html for the actual numbers. I tried to create an app that indexes all the links in wikipedia articles and I probably got to only 10% of all articles.

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