我想在我的Android应用程序中建立与FMS(闪存媒体服务器)的连接。

请建议是否有通过RTMP连接到FMS的方法。

最佳答案

您看过NetConnection类吗?它与支持RTMP的服务器建立RTMP连接。

建立连接很容易:

var nc:NetConnection = new NetConnection();

// Listen for the netstatus event
nc.addEventListener(NetStatusEvent.NET_STATUS, onStatus);

// Connect to your server
nc.connect("IP_GOES_HERE");

function onStatus(e:NetStatusEvent):void
{
    if (e.info.code == "NetConnection.Connect.Success")
    {
        // Connection has been established
    }
}


看起来您不想在Flash中而是在Java中做到这一点。我知道有一个库在客户端实现RTMP,即Flazr

关于android - 通过RTMP android连接到Flash Media Server,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5514754/

10-12 13:46