[wowza]用wowza流媒体来录制视频直播流的方法
[wowza]用wowza流媒体来录制视频直播流的方法描述
开始、停止录制直播流的API方法:
- startRecording(streamName,recordOptions);
- stopRecording(streamName);
- 有两种方式可以调用录制接口,一种是flash应用,一种是通过HTTP的Post方式触发开始录制和停止录制
- append 附加的录制文件是否存在,默认是false
- version/overwrite 开始录制时,version表示如果已经存在文件(myStream.flv),那么会以myStream_0.flv存放新的文件;overwrite表示,如果存在文件,那么覆盖。
- startonkeyframe 录制关键帧。默认false。
- recorddata 包含cuepoints和元数据,默认是true
- ouput:录制文件的绝对路径+名称+扩展名。默认为录制到application.xml配置的路径中,以流名称作为文件名,并添加适当的扩展名(flv或MP4)
安装引用模块
一、Flash应用调用方式
1、复制lib/wms-plugin-integrationrecord.jar and lib/wms-plugin-livestreamrecord.jar 到
[install-dir]/lib/目录中。
2、编辑 [install-dir]/conf/[application]/Application.xml并添加下面<Module>到<Modules>列表中的最后:
<Module>
<Name>ModuleLiveStreamRecord</Name>
<Description>ModuleLiveStreamRecord</Description>
<Class>com.wowza.wms.plugin.livestreamrecord.ModuleLiveStreamRecord</Class>
</Module>
3、双击录制模块压缩包中的client\livestreamrecord.html,修改Server和Stream等信息,然后点击“Start Recording”按钮开始录制,点击“Stop Recording”停止录制。
二、HTTP调用方式
1、复制lib/wms-plugin-integrationrecord.jar and lib/wms-plugin-livestreamrecord.jar 到
[install-dir]/lib/目录中。
2、编辑 [install-dir]/conf/[application]/Application.xml并添加下面<Module>到<Modules>列表中的最后:
<Module>
<Name>ModuleLiveStreamRecord</Name>
<Description>ModuleLiveStreamRecord</Description>
<Class>com.wowza.wms.plugin.livestreamrecord.ModuleLiveStreamRecord</Class>
</Module>
3、添加下面的HTTProvider到/conf/VHost.xml 中/HostPort (Port 8086)下的 /HTTProviders容器中,把它放到最后一个HTTProvider的上面,在HTTProviders中的顺序应该是倒数第2个HTTProvider。
<HTTPProvider>
<BaseClass>com.wowza.wms.plugin.livestreamrecord.HTTPLiveStreamRecord</BaseClass>
<RequestFilters>livestreamrecord*</RequestFilters>
<AuthenticationMethod>none</AuthenticationMethod>
</HTTPProvider>
4、可以在浏览器中打开clientHTTP/HTTPLiveStreamRecord.html页面进行开始和停止操作。或者直接使用URL的方式也是可以的。如下:
所有选项配置间用&符号链接:
请求选项:
app=[app-name] 直播应用名
streamname=[stream-name] 流名称,必须是直播流
action=startRecording|stopRecording 动作
配置选项和他们的默认值:
append=true|false (default is false)
version=true|false (default is true. If set to false, and append is false, an existing file will be overwritten)
startonkeyframe=true|false (default is false)
recorddata=true|false (default is true)
output=[path]/[filename].[ext] (default is empty, files are recorded to content folder)
format=flv|mp4 (default is flv)
5、添加安全选项
修改HTTP方式中第三步<AuthenticationMethod>none</AuthenticationMethod>
为:
<AuthenticationMethod>admin-basic</AuthenticationMethod>
这样就要求验证用户名密码才可以触发。
需要添加用户名和密码到URL中才可以触发
注意:只有H.264视频格式和AAC或MP3音频格式才可以被录制到.mp4文件中。
注意:这个API可以调用服务端控制录制进程
Note: There are three operations exposed through JConsole/JMX: recordStream, stopRecording, getRecorderNames. This enables starting and stopping of recording through the Module interface exposed in JMX. The second parameter of recordStream (format) has the following values: 0=Use original stream format, 1=Record in FLV container, 2=Record in MP4 container. (来源:OSCHINA 博客文章)
热门文章推荐
- [rtmp]流媒体协议RTMP,RTSP与HLS有什么不同?
- [Wowza]流媒体服务器Wowza Media Server的安装与启动教程
- [wowza]wowza推流发布和播放(推流RTMP流)介绍
- [wowza]Wowza Streaming Engine 4的安装与配置教程
- [wowza]Wowza Media Server 安装教程(含windows/Linux平台)
- [wowza]RTP直播流推送到另一个远端的服务器
- [AS3]Wowza Media Server服务器
- [wowza]wowza推RTSP流要求用户名密码