1

我尝试在 Windows 10 上使用 LibVLCSharp 播放实时 RTP 流。

我使用 LibVLCSharp 和 LibVLCSharp.WPF NuGet 库。

以下是我正在执行的代码:

LibVLC libVLC = new LibVLC();
MediaPlayer mediaPlayer = new MediaPlayer(libVLC);

Media m = new Media(_libVLC, "rtp://@:7777/", FromType.FromLocation);
mediaPlayer.Play(m);

我收到以下消息:

main demux meta debug: no meta reader modules matched
main input debug: `rtp://@:7777/' successfully opened
rtp demux error: unspecified payload format (type 96)
rtp demux: A valid SDP is needed to parse this RTP stream.
main demux error: SDP required
main demux error: A description in SDP format is required to receive the RTP stream. Note that rtp:// URIs cannot work with dynamic RTP payload format (96).
rtp demux debug: added RTP source (bfccda8c)
rtp demux debug: unknown payload (96)

我错过了什么?

如果需要,我可以提供更多信息。谢谢

4

1 回答 1

0

看来您需要在某处编写一个 SDP 文件来描述您的流,并播放该 sdp 文件:https ://forum.videolan.org/viewtopic.php?t=149657

StreamMediaInput 可能会起作用,而不是在某处写入文件,但我没有测试。

于 2020-09-22T05:12:41.903 回答