我正在尝试rtmps
使用 C# 和 FluorineFX 连接到服务器。
我正在使用此代码执行此操作
netConnection = new NetConnection();
netConnection.OnConnect += onConnect;
netConnection.NetStatus += netStatus;
netConnection.ObjectEncoding = ObjectEncoding.AMF3;
Console.WriteLine(netConnection.PlayerVersion = "WIN 10,1,85,3");
netConnection.Connect("rtmps://example.com:2099/");
example.com 正在替换此示例中的真实 url。
但是这段代码只给了我一个例外,说明:
System.UriFormatException: One of the identified items was in an invalid format
FluorineFX 网页声明它支持 rtmps,所以我认为会是这样。任何帮助将不胜感激。