尝试编写一个red5应用程序,它只记录流式传输的所有内容。找到了here中我松散关注的项目模板。
如果我从FMLE 3.2连接到rtmp://myserverip/live
(来自默认安装),一切正常。如果我连接到rtmp://myserverip/video
,我会收到错误
“主服务器出现问题。无法连接到主服务器。请验证您的服务器URL和应用程序名称是否有效以及您的Internet连接是否正常并重试。”
我的代码如下:
应用
public class Application extends ApplicationAdapter {
/** {@inheritDoc} */
@Override
public boolean connect(IConnection conn, IScope scope, Object[] params) {
super.connect(conn, scope, params);
return true;
}
/** {@inheritDoc} */
@Override
public void disconnect(IConnection conn, IScope scope) {
super.disconnect(conn, scope);
}
@Override
public void streamPublishStart(IBroadcastStream stream) {
super.streamPublishStart(stream);
try {
stream.saveAs(stream.getPublishedName(), false);
}
catch (Exception e) {
e.printStackTrace();
}
}
@Override
public void streamBroadcastClose(IBroadcastStream stream) {
super.streamBroadcastClose(stream);
System.out.print("Broadcast Closed");
}
@Override
public void streamBroadcastStart(IBroadcastStream stream) {
super.streamBroadcastStart(stream);
System.out.print("Broadcast Started");
}
}
的web.xml
<?xml version="1.0" encoding="ISO-8859-1"?>
<web-app
xmlns="http://java.sun.com/xml/ns/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
version="2.4">
<display-name>video</display-name>
<context-param>
<param-name>webAppRootKey</param-name>
<param-value>/video</param-value>
</context-param>
</web-app>
RED5-web.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-3.0.xsd
http://www.springframework.org/schema/lang http://www.springframework.org/schema/lang/spring-lang-3.0.xsd">
<bean id="placeholderConfig" class="org.springframework.beans.factory.config.PropertyPlaceholderConfigurer">
<property name="location" value="/WEB-INF/red5-web.properties" />
</bean>
<bean id="web.context" class="org.red5.server.Context"
autowire="byType" />
<bean id="web.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="web.context" />
<property name="handler" ref="web.handler" />
<property name="contextPath" value="${webapp.contextPath}" />
<property name="virtualHosts" value="${webapp.virtualHosts}" />
</bean>
<bean id="web.handler" class="net.bordereastcreative.video.Application" />
</beans>
red5-web.properties
webapp.contextPath=/video
webapp.virtualHosts=*
知道我做错了什么吗?我查看了/usr/share/red5/log
中的所有日志文件,但我看不到与此应用有关的任何内容。
使用Ubuntu LTS 12.04和red5 1.0。
更新#1:用于添加对超级和虚拟主机的调用的已编辑代码更改为*。
答案 0 :(得分:1)
在服务器范围内自动记录所有流的最简单方法是在red5.properties文件中设置自动记录属性“broadcaststream.auto.record”
答案 1 :(得分:0)
输出日志在启动时说了什么?
我们应该看到您的范围正在创建。
此外,尝试将虚拟主机缩小为单个通配符'*',以查看是否存在某些未定义的主机解析。
答案 2 :(得分:0)
您是否创建了有效的服务器端脚本并将WEB-INF文件夹放在red5应用程序文件夹中的视频文件夹中?