red5:我该如何进行服务器端直播?

时间:2011-12-23 06:00:25

标签: red5

我正在使用red5和flex组合进行麦克风直播。场景是将Web客户端麦克风流发送到服务器并在服务器端播放流。类似地,进行反向操作,即从服务器向客户端发送麦克风流并在客户端侧播放流。

我已经在链接溢出的堆栈溢出上发布了类似的查询:

red5: how can i send microphone stream?

我有客户端代码,我认为它也可以在不同的博客上使用。但我的问题是我如何在red5服务器端编写代码。我在我的机器上安装了red5服务器,并且还读出了red5 API。但是从那里我不清楚我如何处理服务器端的实时流。

我还制作了一个red5示例代码。

Application.java

public class Application extends ApplicationAdapter {

    @Override
    public boolean appConnect(IConnection arg0, Object[] arg1) {
        out.println("appConnect");
        return super.appConnect(arg0, arg1);
    }

    @Override
    public void appDisconnect(IConnection arg0) {
        out.println("appConnect");
        super.appDisconnect(arg0);
    }

}

StreamManager.java

public class StreamManager {

    private static final Log log = LogFactory.getLog(StreamManager.class);
    private Application app;

    /**
     * Start recording the publishing stream for the specified IConnection.
     * 
     * @param conn
     */

    private ClientBroadcastStream stream;

    public void recordShow(IConnection conn) {
        try {
            log.debug("Recording show for: " + conn.getScope().getContextPath());
            String streamName = String.valueOf(System.currentTimeMillis());
            log.debug("Stream Name : " + streamName);
            // Get a reference to the current broadcast stream.
            stream = (ClientBroadcastStream) app.getBroadcastStream(conn.getScope(), "hostStream");
            // Save the stream to disk.
            stream.saveAs(streamName, false);

        } catch (Exception e) {
            log.error(e.getMessage(), e);
        }
    }

    public void setApplication(Application app) {
        this.app = app;
    }

}

samplescope-context.xml中

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xmlns:lang="http://www.springframework.org/schema/lang"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
                          http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-2.0.xsd"> 
        <bean id="samplescope.context" class="org.red5.server.Context" autowire="byType" />
            <bean id="samplescope.scope" class="org.red5.server.WebScope"
                init-method="register">
                        <property name="server" ref="red5.server" />
                        <property name="parent" ref="global.scope" />
                        <property name="context" ref="samplescope.context" />
                        <property name="handler" ref="samplescope.handler" />
                        <property name="contextPath" value="/samplescope" />
                        <property name="virtualHosts"
                            value="*,localhost, localhost:5080, 127.0.0.1:5080" />                  
            </bean>
    <bean id="samplescope.handler" class="my.first.Application" />
    <bean id="streamManager.service" class="my.first.StreamManager">
        <property name="application" ref="samplescope.handler"/>
    </bean>
</beans>

上面的代码将流保存在服务器端的FLV文件中,但是我想要而不是在服务器上保存流,我可以获得原始数据流,因此可以轻松编码流。同样,在服务器上发送流之前,对流进行解码。我怎么能用red5做呢?

1 个答案:

答案 0 :(得分:2)

如果要访问“已解码”的媒体字节,则必须使用Xuggler之类的内容,因为Red5不会对媒体进行解码。 Red5中的“编解码器”类只存储编码数据并将其发送到需要的位置。