0
我試圖連接到使用C#和FluorineFX的rtmps
服務器。FlourineFX rtmp ssl
我使用這個代碼
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,所以,我覺得這將是這種情況。任何幫助將不勝感激。