当前位置:   article > 正文

OBS+nginx+nginx-http-flv-module实现阿里云的推流和拉流

OBS+nginx+nginx-http-flv-module实现阿里云的推流和拉流

背景:需要将球机视频推送到阿里云nginx,使用网页和移动端进行播放,以前视频格式为RTMP,但是在网页上面播放RTMP格式需要安装flash插件,chrome浏览器不给安装,调研后发现可以使用nginx的模块nginx-http-flv-module实现flv视频在网页上播放,记录一下阿里云上宝塔面板中配置nginx和nginx-http-flv-module所遇到的问题。

nginx-http-flv-module是基于nginx-rtmp-module 的流媒体服务器,它具备了所有nginx-rtmp-module的功能。

环境

推流软件OBS:官方下载 | OBS
播放视频软件VLC:官方下载:VLC media player,最棒的开源播放器 - VideoLAN

云服务器上已经安装过宝塔面板

(这个环境自己应按照环境进行搭建)

安装nginx和 nginx-http-flv-module

这里采用宝塔面板的编译安装nginx,需要提前下载第三方模块nginx-http-flv-module

下载地址:

git clone https://github.com/winshining/nginx-http-flv-module.git

 下载后存放到云服务器中路径下面,我这个存放到nginx_plus文件夹下面,这里面还有以前的RTMP模块(不需要了)

​添加nginx的第三方模块:在/www/server/panel/install路径下,打开nginx.sh脚本文件:

 nginx.sh中添加nginx-http-flv-module模块保存的路径

--add-module=/www/server/nginx_plus/nginx-http-flv-module #换成自己的路径

编译安装nginx(nginx有安装的会覆盖的) 

sh nginx.sh install 1.20 #1.20为安装的版本,不指定的话则为最新版本

等待安装即可,需要五分钟左右。

安装完成

  1. nginx -v  #小写的v,是简洁的版本号
  2. nginx -V #大写的V,详细是查看版本和模块

配置nginx的参数(这里面是我的nginx参数全部复制内容,根据个人需要进行更改)

  1. user www www;
  2. worker_processes auto;
  3. error_log /www/wwwlogs/nginx_error.log crit;
  4. pid /www/server/nginx/logs/nginx.pid;
  5. worker_rlimit_nofile 51200;
  6. stream {
  7. log_format tcp_format '$time_local|$remote_addr|$protocol|$status|$bytes_sent|$bytes_received|$session_time|$upstream_addr|$upstream_bytes_sent|$upstream_bytes_received|$upstream_connect_time';
  8. access_log /www/wwwlogs/tcp-access.log tcp_format;
  9. error_log /www/wwwlogs/tcp-error.log;
  10. include /www/server/panel/vhost/nginx/tcp/*.conf;
  11. }
  12. events
  13. {
  14. use epoll;
  15. worker_connections 51200;
  16. multi_accept on;
  17. }
  18. #RTMP的配置
  19. rtmp_auto_push on;
  20. rtmp_auto_push_reconnect 1s;
  21. rtmp_socket_dir /tmp;
  22. rtmp {
  23. out_queue 4096;
  24. out_cork 8;
  25. max_streams 128;
  26. timeout 15s;
  27. drop_idle_publisher 15s;
  28. log_interval 5s; #interval used by log module to log in access.log, it is very useful for debug
  29. log_size 1m; #buffer size used by log module to log in access.log
  30. server {
  31. listen 1935;
  32. application live {
  33. #开启直播
  34. live on;
  35. record off;
  36. #可以把转完码的视频放在这个文件里,这样可以拉这个视频进行播放
  37. #play /opt/video;
  38. # 允许从任何源push流
  39. allow publish all;
  40. # 允许从任何地方来播放流
  41. allow play all;
  42. # 20秒内没有push,就断开链接。
  43. drop_idle_publisher 20s;
  44. ##打开 GOP 缓存,减少首屏等待时间
  45. gop_cache on;
  46. }
  47. }
  48. }
  49. http
  50. {
  51. include mime.types;
  52. #include luawaf.conf;
  53. include proxy.conf;
  54. lua_package_path "/www/server/nginx/lib/lua/?.lua;;";
  55. default_type application/octet-stream;
  56. server_names_hash_bucket_size 512;
  57. client_header_buffer_size 32k;
  58. large_client_header_buffers 4 32k;
  59. client_max_body_size 50m;
  60. sendfile on;
  61. tcp_nopush on;
  62. keepalive_timeout 60;
  63. tcp_nodelay on;
  64. fastcgi_connect_timeout 300;
  65. fastcgi_send_timeout 300;
  66. fastcgi_read_timeout 300;
  67. fastcgi_buffer_size 64k;
  68. fastcgi_buffers 4 64k;
  69. fastcgi_busy_buffers_size 128k;
  70. fastcgi_temp_file_write_size 256k;
  71. fastcgi_intercept_errors on;
  72. gzip on;
  73. gzip_min_length 1k;
  74. gzip_buffers 4 16k;
  75. gzip_http_version 1.1;
  76. gzip_comp_level 2;
  77. gzip_types text/plain application/javascript application/x-javascript text/javascript text/css application/xml application/json image/jpeg image/gif image/png font/ttf font/otf image/svg+xml application/xml+rss text/x-js;
  78. gzip_vary on;
  79. gzip_proxied expired no-cache no-store private auth;
  80. gzip_disable "MSIE [1-6]\.";
  81. limit_conn_zone $binary_remote_addr zone=perip:10m;
  82. limit_conn_zone $server_name zone=perserver:10m;
  83. server_tokens off;
  84. access_log off;
  85. # 支持跨域的配置
  86. add_header 'Access-Control-Allow-Origin' '*';
  87. # 请求允许发送cookie
  88. add_header 'Access-Control-Allow-Credentials' 'true';
  89. server
  90. {
  91. # listen 888;
  92. # server_name phpmyadmin;
  93. # index index.html index.htm index.php;
  94. # root /www/server/phpmyadmin;
  95. # #error_page 404 /404.html;
  96. # include enable-php.conf;
  97. # location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$
  98. # {
  99. # expires 30d;
  100. # }
  101. # location ~ .*\.(js|css)?$
  102. # {
  103. # expires 12h;
  104. # }
  105. # location ~ /\.
  106. # {
  107. # deny all;
  108. # }
  109. listen 8080;
  110. server_name localhost;
  111. location /live {
  112. flv_live on;
  113. chunked_transfer_encoding on; #支持'Transfer-Encoding: chunked'方式回复
  114. # add_header 'Access-Control-Allow-Origin' '*'; #添加额外的HTTP头
  115. #add_header 'Access-Control-Allow-Credentials' 'true'; #添加额外的HTTP头
  116. }
  117. location /flv {
  118. flv_live on;
  119. chunked_transfer_encoding on;
  120. add_header 'Access-Control-Allow-Origin' '*';
  121. add_header 'Access-Control-Allow-Credentials' 'true'; #添加额外的HTTP头
  122. }
  123. access_log /www/wwwlogs/access.log;
  124. }
  125. include /www/server/panel/vhost/nginx/*.conf;
  126. }

OBS推流和VLC的拉流验证

obs推流操作参考:OBS快速入门基础使用教程

 重点配置推流地址和推流码 :rtmp://你的ip地址:1935/live/test,test为推流名称,在拉流的时候需要请记住

 VLC拉流

参考:obs+nginx-flv+flv实现http-flv在页面播放_obs http-flv-CSDN博客

  • RTMP格式拉流地址
rtmp://你的ip:1935/live/test
  • flv格式拉流地址
http://你的ip地址:8080/live?port=1935&app=live&stream=test #nginx中配置的参数:8080为http的server监听的,app为rtmp中起的application名称,stream为推流码

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/681270
推荐阅读
相关标签
  

闽ICP备14008679号