Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm developing an iOS app that generate video files and have a social gallery for users to display their clips. After a lot of research I found that Google Drive would be perfect to fit my needs so I did some testing and sucessfully made the app upload the file to GDrive and everything.

Now I need to stream the uploaded file in a MPMoviePlayerViewController, for that I would need some kind of direct link, I'm right? After my initial tests I used the variable WebContentLink as a source URL and it worked flawlessly, I was really happy with the result, however now it doesn't work anymore, I don't know what happened and I think the method that I used is not realiable? I tried all the other possible links and none of them seems to work.

Can someone give a guidance about if this is really supported by Google Drive and how it's the best way to archive that in a reliable way?

Thank you very much !

share|improve this question
I made it work again by adding .mp4 in the end of the filename variable ( When uploading ), and using the webContentLink as a URL for the movie player. Just want to know you if you think this is a reliable method and that I'm not violating any usage term of Google Drive. Regards ! – MindTrip Feb 12 at 19:21
Another update .. now that I got everything working again I faced another problem, it seems that there is a bandwich limit for the files and after a few ( really not that many ) visualization in the video it stopped working again, I tried the direct link on the browser and I now get the message: "Sorry, you can't view or download this file at this time. Too many users have viewed or downloaded ......." I would love to hear from the Google Drive team about my questions and if possible how I can archive it in a reliable way. – MindTrip Feb 13 at 13:56
Ps: If I use the embedLink to show it in a web browser it works without any bandwich restriction, however I can't use the embedLink in an iOS device as it is a flash based player ... – MindTrip Feb 13 at 14:01

2 Answers

I too encounter the same error when I try to download 28 times (testing) the same 24mb file.

However I realise if I am to download using the content owner ID, it does allow downloading after the 28th time

https://docs.google.com/a/onwardsct.com/uc?id=0ByvXJAlpPqQPYWNqY0V3MGs0Ujg&export=download

Sorry, you can't view or download this file at this time.

Too many users have viewed or downloaded this file recently. Please try accessing the file again later. If the file you are trying to access is particularly large or is shared with many people, it may take up to 24 hours to be able to view or download the file. If you still can't access a file after 24 hours, contact your domain administrator.

share|improve this answer

The experience for streaming files natively is not ideal right now, sorry. It is something Google are working on.

You are doing this correctly though. The webContentLink should use the user's quota, and that should be enough for most cases. If you can give some specific numbers, we can look at it.

The embed link is the best way to show it on a mobile device, but as you say won't work everywhere.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.