How to upload and stream video using Appengine Blo

2019-06-02 15:51发布

I'm using Google Appengine to upload and serve photo images, but I would also like to do the same with audio and video files. Does anyone know any way to do this? Please let me have sample code if you can. Thanks.

1条回答
SAY GOODBYE
2楼-- · 2019-06-02 16:27

The blobstore is suitable for any kind of file. It has no special affinity for images. The same upload and download handlers you use for images can be used for audio, video, or any other type of file.

Streaming a video to a user has more to do with what kind of file you upload, and how you embed it on your website. You can upload an FLV video and embed an FLV player on your site, or try the HTML5 video tag.

查看更多
登录 后发表回答