I'm trying to stream a Video from App Engine.

I'm able to play the content in Firefox but the video is not playing
in Chrome.

Resource.java ( servlet ),
{
  BlobstoreService blobstoreService =
BlobstoreServiceFactory.getBlobstoreService();
  resp.setContentType("video/ogg");
  blobstoreService.serve(blobKey, resp);
}

And in the JSP,
<video id="video_with_controls" width="500" height="500"
class="context_1" controls>
       <source src="<%= displayURL %>" type='video/ogg;
codecs="theora, vorbis"' />
      Your browser does not support the video tag
</video>

displayURL points to "resource?key=iqI0GlXrXu1lQCCp-7VbYg"

Note: In the Java console I see. But I'm not sure whether they are
related,
resourceResource interpreted as document but transferred with MIME
type video/ogg.
resourceResource interpreted as document but transferred with MIME
type .

Thanks in advance for any help or pointers on how to get around this.

rgds,
vinoo

-- 
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