I want to play a remote video hosted in Brightcove. As Brightcove URLs are links to players not direct links to video files the AVPlayer won't do it. I know Brightcove provides an API but can't find any good examples for iOS nor documentation.

Any help/pointing direction appreciated.

link|improve this question

Why the downvotes, people? This is at least a more interesting question than the 5000th "Do I need to retain objects in order to keep them around?" (Though I have no idea what Brightcove is and its site just tells me it is in private beta.) – Chuck Oct 24 '11 at 20:36
Ty Chuck :) Brightcove is a professional video delivery platform: brightcove.com. They dont publish video file URLs but links to players to emb. That's why you need to use the API. – Martha Oct 26 '11 at 13:37
feedback

4 Answers

up vote 1 down vote accepted

I haven't used Brightcove, but poking around their site, I see they have two APIs: a Player API and a Media API. It sounds like the Media API is what you want — it's documented as giving direct references to the videos. The page has a link to several examples.

link|improve this answer
I've managed to make it work using BC's API. If anyone interested just drop me a msg and I'll post a quick example. Ty Chuck! – Martha Oct 28 '11 at 12:45
Just as a comment to anyone about to use BC: bc API library comes hardlinked with some open source REST library for iphone. If you happen to use the same library or worst same lib but newer version you will get some ugly errors. Thats why I switched for fliqz video hosting. The have just a REST API that brings you the real video's URL to play with the usual AVPlayer that we all know and love. Hope this comes usefull for anyone. – Martha Nov 15 '11 at 17:30
feedback

You can also lift alot of the code from their Oneplanet demo source. In fact the whole playlist and video player mechanism can be practically copied into your project so all you need to do is pass a video or playlist ID into their initwithnibandplaylist function in their view controller and you're good to go.

link|improve this answer
feedback

You can find the direct link to the video via the media api, bypassing the player API entirely. You need a pro account and a token:

http://support.brightcove.com/en/docs/getting-started-media-api

Alternatively, you can create a simple "player" without any controls (just a video window actually) and make your own HTML controls totally outside of Brightcove to trigger almost anything you'd want to do via the player API.

link|improve this answer
feedback

There is also a Brightcove iOS SDK. It is really two SDKs one for the Media API and one that includes a MediaPlayer. If you want to use the AVPlayer you can use the Media API iOS SDK. Here is the docs for that:

http://support.brightcove.com/en/docs/brightcove-app-sdk-ios

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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