在服务器上一般都需要修改文件默认存储路径,默认存储是在c盘下,这样很容易爆满,所以放到其它大的分区或nas中。
更改直播存储目录:
编辑 C:\Program Files\Adobe\Adobe Media Server 5\conf\ams.ini
VHOST.APPSDIR = c:\applications #存储目录,这里我就一个分区,所以放到c盘下。
复制配置文件:
直接把C:\Program Files\Adobe\Adobe Media Server 5\applications\下所有目录复制到c:\applications下
这样直播时,视频会记录到c盘的applications下,然后修改apache,直播视频从c盘的applications下找。
<Location /hds-live> #hds直播
HttpStreamingEnabled true
HttpStreamingLiveEventPath “c:\applications”
HttpStreamingContentPath “c:\applications”
HdsFmsDirPath “..”
HttpStreamingF4MMaxAge 2
HttpStreamingBootstrapMaxAge 2
HttpStreamingDrmmetaMaxAge 3600
HttpStreamingFragMaxAge -1
Options -Indexes FollowSymLinks
</Location>
<Location /hls-live> #hls直播
HLSHttpStreamingEnabled true
HttpStreamingLiveEventPath “c:\applications”
HttpStreamingContentPath “c:\applications”
HLSMediaFileDuration 8000
HLSSlidingWindowLength 6
HLSFmsDirPath “..”
HttpStreamingUnavailableResponseCode 503
HLSAMFToId3MappingFilePath conf/AMF_to_Id3_Mapping.xml
HLSM3U8MaxAge 2
HLSTSSegmentMaxAge -1
HLSMetaMaxAge 3600
HLSMaxEventAge 300
Options -Indexes FollowSymLinks
</Location>
重启AMS和apache服务,使用OSMF Player测试。
HDS访问地址:http://42.62.101.177/hds-live/livepkgr/目录名/liveevent/流名称.f4m
HLS访问地址:http://42.62.101.177/hls-live/livepkgr/目录名/liveevent/流名称.m3u8
再次提醒hds需要播放器支持,hls可以直接在苹果设备的Safari上看。
原创文章,转载请注明。本文链接地址: https://www.rootop.org/pages/3273.html