1

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.

Kwame
  • 1,115
  • 2
  • 21
  • 38

1 Answers1

1

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.

Community
  • 1
  • 1
Drew Sears
  • 12,812
  • 1
  • 32
  • 41