Hi Krishna,

I'm in the middle of investigating using serving video from GAE.  My
interest is primarily distributed computer graphics film and video
production, rather than pure serving of end user content.  However I'm
probably looking into similar issues.  So far what I have working is:

1. Uploading of raw video to Blobstore.
2. Transcoding raw files to mp4, webm, and ogg through Zencoder.com
3. Serving of HTML5 video from Blobstore through "Video for Everyone"
like markup:  (http://camendesign.com/code/video_for_everybody).
4. Simple FLV serving from Blobstore.
5. Very rudimentary database sync to Shotgun (shotgunsoftware.com).
6. Some simple AJAX style interaction.

So far I've had no major problems.  The biggest pain was getting files
from Zencoder to GAE.  Zencoder doesn't POST and GAE has no other way
to get files into the Blobstore.  So I needed to implement a simple
cURL server on a mini EC2 instance as a bridge between the two.
(Getting to this solution took a week of going down wrong paths and
learning things I never wanted to know.)

I haven't written any significant security yet (Yes, I left the key to
the front door under the mat.).  But I don't see any theoretical
obstacles to restricting access.  If and when this goes into
production I'll need to change the locks and install a deadbolt :-)

My code is too new to make public, but I think I've got a pretty good
understanding of some basic Python classes and request handlers for
doing this sort of thing.   And I wouldn't mind sharing notes with any
serious developers who want to push the envelope in this area.

John


On Sep 24, 10:33 am, Krishna Bhupathi <[email protected]> wrote:
> I am planning to develop a website that would allow subscribed
> users(with a fee) to view/upload videos. I don't want these videos to
> show up on a public url as Youtube does. Is there a way I could do it
> on App Engine?
> Is there any API for App Engine for rich content? Is Blobstore
> solution for this? If so can any one help me point to a sample app to
> stream video over http using blobstore?
> Amazon CloudFront have very good API's for rich content but the
> restriction is, the content should be available as public. Any one
> with the URL can view my content.
> Any ideas that would achieve my goal welcome?
>
> Thanks and Regards,
> Krishna.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to