How to create an RTMP / RTSP player using FFMpeg for ios

I am working on an application using RTMP / RTSP links to broadcast / play live audio / video. Since iOS devices support HTTP, but my requirement is to play RTMP / RTSP Links. I want to create my custom player using the FFMpeg framework. I searched through the Internet, used many solutions, but did not find any solution.

+4
source share
2 answers

Here is an overview of current rtsp solutions on iOS: https://gist.github.com/oc2pcoj/e55795550984d205d109 I am using ijkplayer in the current project to play a video stream from an IP camera. It is working fine.

+3
source

there is an Xcode project based on ffmpeg. It is possible to play RTSP links. Take a look at this: https://github.com/durfu/DFURTSPPlayer

If you want to learn more about RTSP, I can highly recommend to you the following link: http://tools.ietf.org/html/rfc2326

+3
source

All Articles