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.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.