Support of Session Description Protocol?
Does flutter_vlc_player have support for SDP? I'm trying to use it but I keep getting an error:
E/VLC ( 2788): [00000076c11c6290/b45] libvlc input: Your input can't be opened E/VLC ( 2788): [00000076c11c6290/b45] libvlc input: VLC is unable to open the MRL 'c=IN IP4 192.168.101.117 m=video 1234 RTP/AVP 26 a=rtpmap:26 JPEG/120000'. Check the log for details
Here's the snippet of code that's causing the error:
_videoPlayerController = VlcPlayerController.network(
'c=IN IP4 192.168.101.117 m=video 1234 RTP/AVP 26 a=rtpmap:26 JPEG/120000',
hwAcc: HwAcc.FULL,
autoPlay: true,
options: VlcPlayerOptions(),
);
Does flutter_vlc actually support SDP?
Hi. I'm looking for the same thing, could you find another solution?
Hi. I'm looking for the same thing, could you find another solution?
I had to resort to using RTSP for the application I'm working for.