我正在尝试在Fluorine Fx中设置RTMP服务器并在Flash示例中接收网络摄像头流。我无法将任何录制的文件保存到网站上。
我有源,我在VS2010工作。我知道哪个tcp / ip监听器应该被flash应用程序命中。我正在调试他们的FluorineFx项目源(而不是直接在FluorineFx.dll上运行)。
即使指出Fluorine FX服务器没有启动自己,似乎也没有启动监听器。
我有以下标准配置:
<rtmpServer>
<threadpool minWorkerThreads="0" maxWorkerThreads="25" idleTimeout="60000"/>
<!-- Ping clients every "pingInterval" ms. Set to 0 to disable ghost detection code. -->
<!-- Disconnect client after "maxInactivity" ms of not responding. -->
<!-- Max. time in milliseconds to wait for a valid handshake. -->
<rtmpConnection pingInterval="0" maxInactivity="60000" maxHandshakeTimeout="0"/>
<rtmptConnection pingInterval="5000" maxInactivity="60000" maxHandshakeTimeout="5000"/>
<rtmpTransport receiveBufferSize="4096" sendBufferSize="4096" tcpNoDelay="true"/>
</rtmpServer>
我不确定应该将RTMP服务器付诸行动。
有什么想法吗?是否可以完全绕过服务器并在代码中设置RTMP侦听器?