是否有可能使用c#并从网站或mp3文件开始通过网络到另一台PC上的VLC播放器的流?
我用以下代码尝试了nugetpacket:net7mma:
long address = (long) (uint) IPAddress.NetworkToHostOrder((int)IPAddress.Parse("192.168.178.56").Address);
System.Net.IPEndPoint tes1 = new System.Net.IPEndPoint(address, 10000);
RtspServer server = new RtspServer(tes1);
Media.Rtsp.Server.MediaTypes.RtpSource media = new Media.Rtsp.Server.MediaTypes.RtpSource("Test", new Uri("http://listen.technobase.fm/tunein-aacisdn-pls"));
bool test = server.TryAddMedia(media);
server.ServerName = "test";
server.Start()
但是VLC Player无法打开媒体流。