当前位置:   article > 正文

docker 搭建 nginx+rtmp+hls(ffmpeg) 直播服务_docker-nginx rtmp搭建流媒体视频播放

docker-nginx rtmp搭建流媒体视频播放

docker nginx zip_Ubuntu中使用Nginx+rtmp模块搭建流媒体视频点播服务
http://www.zzvips.com/article/39011.html

1、环境准备

docker 镜像:tiangolo/nginx-rtmp:latest

ffmpeg 本文基于版本:ffmpeg 4.4.1-static

2、制作镜像

2.1 创建目录并进入目录
mkdir rtmp && cd rtmp
  • 1
2.2 编写 nginx.conf
worker_processes auto;
rtmp_auto_push on;
events { }
#直播流配置
rtmp {
  server {
    #端口
    listen 1935;
    # RTMP 直播流配置
    application rtmplive {
      # 非常重要, 设定让ngnix断开阻塞中的连接, 才能触发exec_record_done
      # 以及客户端的LFLiveKit reconnectCount自动重新连接才会好用
      drop_idle_publisher 5s;
      live on;
    }
    # HLS 直播流配置
    application hls {
      live on;
      record all;
      record_path /tmp;
      record_max_size 10485760K;
      record_unique off;
      record_append on;
      hls on;
      hls_path /tmp;
      hls_fragment 5s;
    }
  }
}
# HLS 拉流配置(vlc播放 http://127.0.0.1:8080/hls/XXX.m3u8,其中http://127.0.0.1:8080/hls/为下面location的值,XXX为具体推流的配置)
http {
  server {
    listen 8080;
    location /hls {
      types {
        application /vnd.apple.mpegurl m3u8;
        video /mp2t ts;
      }
      #访问权限开启,否则访问这个地址会报403
      autoindex on;
      #视频流存放地址,与上面的hls_path相对应,这里root和alias的区别可自行百度
      alias /tmp;
      expires -1;
      add_header Cache-Control no-cache;
      #防止跨域问题
      add_header 'Access-Control-Allow-Origin' '*';
      add_header 'Access-Control-Allow-Credentials' 'true';
      add_header 'Access-Control-Allow-Methods' 'GET, POST, OPTIONS';
      add_header 'Access-Control-Allow-Headers' 'DNT,X-CustomHeader,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type';
    }
  }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
2.3 编写Dockerfile文件
FROM tiangolo/nginx-rtmp
COPY nginx.conf  /etc/nginx/nginx.conf
  • 1
  • 2
2.4 制作镜像
docker build -t trc-nginx-rtmp .
  • 1

3、运行容器

docker run -d -p 1935:1935 -p 1900:8080 -v /tmp:/tmp --privileged=true --name trc-nginx-rtmp trc-nginx-rtmp
  • 1

注意:

特别需要注意/Users/taoruicheng/temp文件夹的权限设置成777。
注意这里面开启了1935推流端口1900拉流端口

4、使用ffmpeg推流

4.1 推送rtsp流
ffmpeg -rtsp_transport tcp -i rtsp://admin:root@11.122.2.143:554 -vcodec copy -f flv -an rtmp://11.122.2.143:1935/hls/abc
  • 1

(vlc播放地址:http://11.122.2.143:1900/hls/abc.m3u8)

4.2 推送本地文件
ffmpeg  -re -stream_loop -1 -i /Users/taoruicheng/工作资料目录/视频素材/仓xx.mp4 -vcodec copy -acodec copy -f flv  rtmp://11.122.2.143:1935/hls/xxx
  • 1

(vlc播放地址:http://11.122.2.143:1900/hls/xxx.m3u8)

5、编写HTML程序进行播放

<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>videojs-contrib-hls embed</title>
 
  <link href="https://unpkg.com/video.js/dist/video-js.css" rel="stylesheet">
  <script src="https://unpkg.com/video.js/dist/video.js"></script>
  <script src="https://unpkg.com/videojs-contrib-hls/dist/videojs-contrib-hls.js"></script>
  
</head>
<body>
  <h1>Video.js Example Embed</h1>
 
  <video id="my_video_1" class="video-js vjs-default-skin" controls preload="auto" width="640" height="268" 
  data-setup='{}'>
    <source src="http://11.122.2.143:1900/hls/xxx.m3u8" type="application/x-mpegURL">
  </video>
  
  <script>
  </script>
  
</body>
</html>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
本文内容由网友自发贡献,转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/196025?site
推荐阅读
相关标签
  

闽ICP备14008679号