Reputation: 1
IP camera streams to PC via VLC RTP over RTSP, but cannot stream to android app via libvlc using Xamarin.Forms
So I can stream the camera with different methods, but.... when I try to stream it with my app using libvlc I get the following log message
Thanks
Upvotes: 0
Views: 1170
Reputation: 1
MSFT
I've used this example from Martin Finkel -- https://code.videolan.org/mfkl/libvlcsharp-samples/tree/master/VideoMosaic , for Xamarin.forms All I've changed is line 19 in MainPage.xaml.cs from _libvlc = new LibVLC(); changed to _libvlc = new LibVLC("--rtsp-tcp"); then I was able to stream "RTP over RTSP(TCP). Hope it help
Upvotes: 0