流媒體伺服器搭建詳解

來源:互聯網
上載者:User

標籤:

1 安裝nginx 要增加nginx-rtmp-module的支援  下載好nginx-rtmp-module後解壓,然後nginx安裝時增加這個模組(--add-module)

./configure --prefix=/usr/local/nginx   --add-module=(nginx-rtmp-module路徑)

2 安裝完成後,開啟Nginx的設定檔nginx.conf進行配置

 首先在裡面加入rtmp的配置


rtmp {
  server {
       listen 1935;
       application video {
        live on;
      }
      application hls {
       live on;
       hls on;
       hls_path /tmp/hls;
      }
  }
}

然後,針對hls,還需要在http裡面增加一個location配置

      

location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /tmp;
add_header Cache-Control no-cache;
}

 

儲存完設定檔後,啟動nginx,通過netstat -ltn命令可以看到增加了一個1935連接埠的監聽.8080是nginx預設的http監聽連接埠.

  /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf 啟動nginx  查看是否成功

3 安裝ffmpeg 所需要源碼包    yasm:http://yasm.tortall.net/Download.html

ffmpeg -re -i /app/test.mp4 -vcodec copy -vprofile baseline -ar 44100 -strict -2 -ac 1 -f flv -s 640x360 -q 10 rtmp://127.0.0.1:1935/hls/test4

 

流媒體伺服器搭建詳解

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.