I had a similar problem serving external static content from my appspot... maybe my solution would work for you: http://goo.gl/jSqzW
You could use this to serve your videos from any external server, or even SVN. You would still be limited to serving 32MB because of the URL fetch limits... if your videos are larger than that take a look at this class that retrieves and merges the content from several HTTP requests: http://goo.gl/RKADN This is implemented for Java, but it should be fairly straightforward to implement in Python. Hope this gives you some ideas... On Feb 2, 11:31 am, loso44x loso44x <[email protected]> wrote: > Hello I have several video clips that is to be deployed to my web app that > exceeds 10MB. I can not deploy the war file as it says some files exceed the > 10MB threshold. Is there a way to bypass this or do I need to use a > blobstore? Correct me if I am wrong, but my understanding is that in order > to retrieve these movies from the blobstore, I would have to make an api > call that includes the blob key. However, in my web app the location of the > movies is hard coded into the html file. The only solution I can think of is > to provide some sort of mapping between these the blob key and the actual > hard coded url. Are there any other alternatives that does not use mapping? > Thanks. -- 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.
