0

I need a library that supports real time video streaming from an RTSP connection to embed in an Android application I've built. It must have a really low latency (1-2s should be fine). I've already tried with a simple VideoView. It works but it has a HUGE latency (more than 10s) because its buffer size cannot be lowered.

Is there any good and reliable solution? I would prefer not to build my own player from scratch...

ExoPlayer doesn't seem to support RTSP.

CFV
  • 740
  • 7
  • 26

1 Answers1

0

I have solved using a modified version of Exoplayer (RTSP Exoplayer GitHub pull request). The buffer size can be edited, so I think it's the best choice for this use case. It works flawlessly!

CFV
  • 740
  • 7
  • 26