博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
NGINX的RTMP、M3U8推流设置
阅读量:4142 次
发布时间:2019-05-25

本文共 489 字,大约阅读时间需要 1 分钟。

NGINX的推流设置

C:\Users\Administrator\Desktop\nginx\conf\nginx.conf

rtmp {
server {
listen 1936; #端口 chunk_size 4096; application live {
live on; record off; allow play all; } application hls {
live on; hls on; #开启hls hls_path "C:\\Program Files\\Apache Software Foundation\\Tomcat 9.0\\webapps\\ROOT\\tmp\\hls\\"; hls_fragment 5s; #一个ts 文件的时长 5s } }}

转载地址:http://frzti.baihongyu.com/

你可能感兴趣的文章
阅读笔记《c++ primer》
查看>>
阅读笔记《C++标准程序库》
查看>>
基于mirror driver的windows屏幕录像
查看>>
C语言8
查看>>
Qt实现简单延时
查看>>
qml有关矩形说明
查看>>
在qt中使用QSplitter设置初始比例setStretchFactor失效的解决方法
查看>>
repeater的使用
查看>>
qt msvc编译中文乱码解决
查看>>
qt实现点击出现窗口,点击其他任何地方窗口消失
查看>>
QML DropArea拖拉文件事件
查看>>
CORBA links
查看>>
读后感:>
查看>>
ideas about sharing software
查看>>
different aspects for software
查看>>
To do list
查看>>
Study of Source code
查看>>
如何使用BBC英语学习频道
查看>>
spring事务探索
查看>>
浅谈Spring声明式事务管理ThreadLocal和JDKProxy
查看>>