amarkon
amarkon

Reputation: 341

How to stream video to iOS via RTMP?

I'm new to dealing with web services, as the majority of contract work I normally do is using local files, but my current contract requires streaming a remote video file. When I attempt to get the streaming URL through the REST API I am returned the following JSON payload:

{
    "Video": {
        "CdnUrl": {CDNURL},
        "ImageFileName": {IMAGEFILENAME},
        "OtherFileFormat": {FLVVIDEOFILENAME},
        "VideoDescription": {DESCRIPTION},
        "VideoFileName": {MP4FILENAME},
        "VideoId": {INTEGER},
        "VideoTitle": {TITLE}
    }
}

I took out all of the values because they shouldn't be relevant. The problem is that I don't know how to access the video files with an RTMP URL. Is this possible on iOS, and if so, how?

Upvotes: 4

Views: 8132

Answers (2)

Jeevanantham Balusamy
Jeevanantham Balusamy

Reputation: 213

It may help you Brightcove Player iOS SDK

Upvotes: 0

henry4343
henry4343

Reputation: 3921

The iOS SDK does not support the RTSP protocol.
This is custom RTMP Library for iPhone

Upvotes: 3

Related Questions