Steztric
Steztric

Reputation: 2942

Xamarin.Forms video streaming library that supports RTSP video feeds

I am using Plugin.MediaManager NuGet package to provide cross-platform video player for my app. However, it does not support playing RTSP video streams. Is there any other library that supports this?

I have looked around and the most common ones are platform-specific libraries such as KXmovie and Managed Media Aggregation but I am a little intimidated by the thought of having to port and/or recompile them.

The best case is if there is a Xamarin.Forms compatible NuGet package available. Failing that, an iOS library that requires binding, but not recompiling. As a last resort, something that needs to be compiled and linking manually, but works out of the box.

Upvotes: 3

Views: 4108

Answers (2)

mfkl
mfkl

Reputation: 2184

A bit late, but there is now. LibVLCSharp supports RTSP (and many other stuff).

Upvotes: 2

Steztric
Steztric

Reputation: 2942

OK so the resounding conclusion is that one does not exist with Xamarin bindings. I will start with this project on GitHub and see if I can compile and generate the bindings myself.

Upvotes: 3

Related Questions