模块 ngx_http_hls_module
Example Configuration Directives hls hls_buffers hls_forward_args hls_fragment hls_mp4_buffer_size hls_mp4_max_buffer_size |
该ngx_http_hls_module
模块为 MP4 和 MOV 媒体文件提供 HTTP Live Streaming (HLS) 服务器端支持。此类文件通常具有.mp4
、.m4v
、
.m4a
、.mov
或.qt
文件扩展名。该模块支持H.264视频编解码器、AAC和MP3音频编解码器。
对于每个媒体文件,支持两个 URI:
-
带有“ ”文件扩展名的播放列表 URI
.m3u8
。URI 可以接受可选参数:-
“
start
”和“end
”以秒为单位定义播放列表边界 (1.9.0)。 -
“
offset
”将初始播放位置移动到以秒为单位的时间偏移量 (1.9.0)。正值设置距播放列表开头的时间偏移。负值设置距播放列表中最后一个片段末尾的时间偏移。 -
“
len
”定义片段长度(以秒为单位)。
-
“
-
带有“ ”文件扩展名的片段 URI
.ts
。URI 可以接受可选参数:-
“
start
”和“end
”以秒为单位定义片段边界。
-
“
该模块作为我们商业订阅 的一部分提供 。
配置示例
location / { hls; hls_fragment 5s; hls_buffers 10 10m; hls_mp4_buffer_size 1m; hls_mp4_max_buffer_size 5m; root /var/video/; }
通过此配置,“ ”文件支持以下 URI /var/video/test.mp4
:
http://hls.example.com/test.mp4.m3u8?offset=1.000&start=1.000&end=2.200 http://hls.example.com/test.mp4.m3u8?len=8.000 http://hls.example.com/test.mp4.ts?start=1.000&end=2.200
指令
句法: |
hls; |
---|---|
默认: | — |
语境: |
location |
打开周围位置的 HLS 流。
句法: |
hls_buffers |
---|---|
默认: |
hls_buffers 8 2m; |
语境: |
http , server ,location |
设置用于读取和写入数据帧的缓冲区的
number
最大值
。size
句法: |
hls_forward_args |
---|---|
默认: |
hls_forward_args off; |
语境: |
http , server ,location |
该指令出现在版本 1.5.12 中。
将播放列表请求中的参数添加到片段的 URI。这对于在请求片段时执行客户端授权或使用 ngx_http_secure_link_module 模块保护 HLS 流时可能很有用 。
例如,如果客户端请求播放列表
http://example.com/hls/test.mp4.m3u8?a=1&b=2
,参数a=1
和b=2
将被添加到参数
start
和之后的片段的 URI 中end
:
#EXTM3U #EXT-X-VERSION:3 #EXT-X-TARGETDURATION:15 #EXT-X-PLAYLIST-TYPE:VOD #EXTINF:9.333, test.mp4.ts?start=0.000&end=9.333&a=1&b=2 #EXTINF:7.167, test.mp4.ts?start=9.333&end=16.500&a=1&b=2 #EXTINF:5.416, test.mp4.ts?start=16.500&end=21.916&a=1&b=2 #EXTINF:5.500, test.mp4.ts?start=21.916&end=27.416&a=1&b=2 #EXTINF:15.167, test.mp4.ts?start=27.416&end=42.583&a=1&b=2 #EXTINF:9.626, test.mp4.ts?start=42.583&end=52.209&a=1&b=2 #EXT-X-ENDLIST
如果 HLS 流受
ngx_http_secure_link_module
模块保护,$uri
则不应在
secure_link_md5
表达式中使用,因为这会在请求片段时导致错误。
应使用基本 URI$uri
而不是
($hls_uri
在示例中):
http { ... map $uri $hls_uri { ~^(?<base_uri>.*).m3u8$ $base_uri; ~^(?<base_uri>.*).ts$ $base_uri; default $uri; } server { ... location /hls/ { hls; hls_forward_args on; alias /var/videos/; secure_link $arg_md5,$arg_expires; secure_link_md5 "$secure_link_expires$hls_uri$remote_addr secret"; if ($secure_link = "") { return 403; } if ($secure_link = "0") { return 410; } } } }
句法: |
hls_fragment |
---|---|
默认: |
hls_fragment 5s; |
语境: |
http , server ,location |
定义不带“ ”参数请求的播放列表 URI 的默认片段长度len
。
句法: |
hls_mp4_buffer_size |
---|---|
默认: |
hls_mp4_buffer_size 512k; |
语境: |
http , server ,location |
size
设置用于处理 MP4 和 MOV 文件的缓冲区的
初始值。
句法: |
hls_mp4_max_buffer_size |
---|---|
默认: |
hls_mp4_max_buffer_size 10m; |
语境: |
http , server ,location |
在元数据处理期间,可能需要更大的缓冲区。它的大小不能超过指定的size
,否则nginx将返回服务器错误500(内部服务器错误),并记录以下消息:
"/some/movie/file.mp4" mp4 moov atom is too large: 12583268, you may want to increase hls_mp4_max_buffer_size