在Ubuntu 14 上安裝 Nginx-RTMP 流媒體伺服器

來源:互聯網
上載者:User

標籤:

一:RTMP

RTMP流媒體協議是 一套 Adobe 開發的音頻視頻即時傳輸協議;

二:Nginx-rtmp

 nginx-rtmp 是一個基於nginx的 RTMP服務模組,開源,免費

https://github.com/arut/nginx-rtmp-module

三:在 ubuntu server 14 安裝流程

1.先下載安裝  nginx 和 nginx-rtmp 編譯依賴工具

sudo apt-get install build-essential libpcre3 libpcre3-dev libssl-dev

2. 建立一個工作目錄,並切換到工作目錄

mkdir ~/workingcd ~/working

3. 下載 nginx 和 nginx-rtmp源碼

wget http://nginx.org/download/nginx-1.7.5.tar.gzwget https://github.com/arut/nginx-rtmp-module/archive/master.zip

4. 安裝unzip工具,解壓下載的安裝包

sudo apt-get install unzip

5.解壓 nginx 和 nginx-rtmp安裝包

tar -zxvf nginx-1.7.5.tar.gzunzip master.zip

6. 切換到 nginx-目錄

cd nginx-1.7.5

7.添加 nginx-rtmp 模板編譯到 nginx

./configure --with-http_ssl_module --add-module=../nginx-rtmp-module-master

8.編譯安裝 

makesudo make install

9. 安裝nginx init 指令碼

sudo wget https://raw.github.com/JasonGiedymin/nginx-init-ubuntu/master/nginx -O /etc/init.d/nginxsudo chmod +x /etc/init.d/nginxsudo update-rc.d nginx defaults

10. 啟動和停止nginx 服務,組建組態檔案

sudo service nginx startsudo service nginx stop

11. 安裝 FFmpeg

sudo apt-add-repository ppa:jon-severinsson/ffmpegsudo apt-get updatesudo apt-get install ffmpeg

12. 配置 nginx-rtmp 伺服器

開啟 /usr/local/nginx/conf/nginx.conf

在末尾添加如下 配置

rtmp {    server {            listen 1935;            chunk_size 4096;            application live {                    live on;                    record off;                    exec ffmpeg -i rtmp://localhost/live/$name -threads 1 -c:v libx264 -profile:v baseline -b:v 350K -s 640x360 -f flv -c:a aac -ac 1 -strict -2 -b:a 56k rtmp://localhost/live360p/$name;            }            application live360p {                    live on;                    record off;        }    }}

13. 儲存上面設定檔,然後重新啟動nginx服務

sudo service nginx restart

14. 如果你使用了防火牆,請允許連接埠 tcp 1935

16: 使用 用戶端,使用 rtmp協議進行視頻即時採集

Field 1: rtmp://your.vultr.ip/live/Field 2: stream-key-your-set

 在這裡視頻採集我使用的是 iPhone5 的 採集程式 https://github.com/jgh-/VideoCore

 

            [_session startRtmpSessionWithURL:@"rtmp://192.168.86.246/live/" andStreamKey:@"test"];

17. 在上面用戶端採集的過程之中,可以使用 vlc 播放器開啟  rtmp 即時資料流

rtmp://your.vultr.ip/live/stream-key-you-set

開啟上面的流,進行測試即時的效果

18: 關於 nginx-rtmp 更多配置

https://github.com/arut/nginx-rtmp-module/wiki/Directives

 

 

參考:https://www.vultr.com/docs/setup-nginx-rtmp-on-ubuntu-14-04

 

在Ubuntu 14 上安裝 Nginx-RTMP 流媒體伺服器

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.