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.
相关问题
- java.lang.NullPointerException at java.io.PrintWri
- __call__() missing 1 required positional argument:
- Countdown to the end of the HTML5 video
- Upload file to Google Cloud Storage using AngularJ
- Where is the best place to put one-time and every-
相关文章
- How to create a MediaClip from RenderTargetBitmap
- Is there a size limit for HTTP response headers on
- Safari blocks play() on video despite being called
- appcfg.py command not found
- Google app engine datastore string encoding proble
- Streaming music synchronously from a mp3 file via
- Why MPMoviePlayerController fullscreen button icon
- Angular route not working when used with Google Ap
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.