0

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.

Tot Zam
  • 8,406
  • 10
  • 51
  • 76
Pavan Alapati
  • 317
  • 1
  • 5
  • 17

1 Answers1

5

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

Dmitri Sosnik
  • 517
  • 1
  • 12
  • 20