How to play(stream instead of download) video file which was stored in GCS using Blobstore API
问题 How to play(stream instead of download) a video file stored in GCS? The file was stored using Blobstore API in GAE Python? Presently, the video gets downloaded when I use the url, returned by send_blob, in the frontend. I serve the video using: video_url = "/v?video_id="+video_blobkey :: class GCSFileServe(blobstore_handlers.BlobstoreDownloadHandler): def get (self): blob_key = self.request.get('video_id') self.send_blob(blob_key) :: app = webapp2.WSGIApplication([ ('/', MainHandler), ('/v',