flutter_vlc_player icon indicating copy to clipboard operation
flutter_vlc_player copied to clipboard

Support of Session Description Protocol?

Open raphasauer opened this issue 4 years ago • 2 comments

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?

raphasauer avatar Sep 30 '21 19:09 raphasauer

Hi. I'm looking for the same thing, could you find another solution?

NaarGes avatar Nov 13 '21 08:11 NaarGes

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.

raphasauer avatar Nov 13 '21 14:11 raphasauer