Pavan Alapati
Pavan Alapati

Reputation: 317

RTSP Streaming in Objective C

I need RSTP Live Streaming. I started R&D, but I can't figure it out. Someone suggested using FFMPEG library, but I don't know how to add FFMPEG library to my project. How do I get Live RTSP Streaming?

Please give me idea and any RTSP Live Streaming Video Sample code.

Upvotes: 0

Views: 7270

Answers (1)

Dmitri Sosnik
Dmitri Sosnik

Reputation: 535

RTSP is quite simple protocol by itself, just reading RFC2326 will help a lot. Source code examples you can find, for example, at former live.com or jrtplib (it's RTP/RTCP library, but as I said RTSP is very simple) You'll need ffmpeg (or other encoder/decoder library) later. There are a lot of ffmpeg tutorials, for example, this one quite old, but quite good, there are plenty of source code on github, for example, here

Upvotes: 5

Related Questions