windows下一分钟配置ngnix实现HLS m3u8点播

1. 下载nginx-1.5.10 for windows

2. 新建子目录:nginx-1.5.10\html\hls,把生成的m3u8和切片好的ts文件或目录拷贝到hls目录下

3. 修改配置文件nginx-1.5.10\conf\mime.types,增加以下三行:
在application/zip zip;这一行后面增加2行:
application/x-mpegURL m3u8;
application/vnd.apple.mpegurl m3u8;

在video/x-msvideo avi;行后,增加1行:
video/MP2T ts;

4. 打开任务管理其,杀掉ngnix.exe,重启ngnix.exe

5. 打开vlc播放器, 【打开网络串流】菜单,输入url:http://192.168.1.100/hls/playlist.m3u8
即可测试播放了,在你的ipad上,也可以播放啦,简单吧!!

后记:
修改/conf.d/default.conf 设置目录别名:
location /media/ {
alias d:/RtspServer/bin/media;
}
这样就可以http://192.168.1.100/media/xxx.m3u8 访问目录d:/RtspServer/bin/media中的文件

如果需要开启HLS的AES加密,可参考官方文档,查找encrypt关键字找到相关的部分,需要配置好ssl和rtmp模块:

https://github.com/arut/nginx-rtmp-module/wiki/Directives

回复

你的邮件地址不会被公开(Your email address will not be published.) Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>