Category Archives: RTMP

CentOS 快速安裝 Nginx with RTMP module

跟 之前裝在Ubuntu的那一篇 一樣 都是沒有設定stat的部分, 需要在另外修改 大致上跟Ubuntu的方式都相同 只是要注意的為 init script 可不可正常進行 測試的範例中是修改 nginx.conf 將 pid 那一行給取消註腳 pid logs/nginx.pid; #!/bin/sh yum groupinstall ‘Development Tools’ -y yum install pcre pcre-devel openssl-devel libxslt-devel -y cd /tmp wget http://nginx.org/download/nginx-1.7.3.tar.gz wget https://github.com/arut/nginx-rtmp-module/archive/master.zip tar -zxvf nginx-1.7.3.tar.gz yum … Continue reading

Posted in CentOS, Nginx, RTMP | Leave a comment

Nginx RTMP Module Stat

將 RTMP 模組檔案解壓縮後的 stat.xsl 複製到網頁目錄 wget https://github.com/arut/nginx-rtmp-module/archive/master.zip unzip master.zip cp nginx-rtmp-module-master/stat.xsl /usr/local/nginx/html/. 編輯 Nginx 設定檔,加入 stat 網頁設定 location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root html; } 重新讀取設定檔 連結網頁 http://[ip]/stat 參考 : https://github.com/arut/nginx-rtmp-module

Posted in Nginx, RTMP | Leave a comment

Flash Media Server (RTMP Server)

基本上裝完就可以跑了!!! 主要設定如下 (以下以OBS產生Streaming為例) OBS設定 => 廣播 模式:直播串流 串流服務:Custom 伺服器:rtmp://[Flash Media Server 伺服器ip]:1935/livepkgr/ 播放路徑:[變數]?adbe-live-event=liveevent 這時後便可以透過連結 rtmp://[Flash Media Server 伺服器ip]/livepkgr/[變數] 進行播放

Posted in FMS, RTMP | Leave a comment

Install Nginx with RTMP module in Ubuntu 12.04 x64 LTS

# 安裝必要套件 apt-get install build-essential libpcre3 libpcre3-dev libssl-dev # 下載 tar 安裝檔案 cd /tmp wget http://nginx.org/download/nginx-1.7.3.tar.gz wget https://github.com/arut/nginx-rtmp-module/archive/master.zip # 安裝 nginx tar -zxvf nginx-1.7.3.tar.gz unzip master.zip cd nginx-1.7.3/ ./configure –with-http_ssl_module –with-http_xslt_module –add-module=../nginx-rtmp-module-master make make install # 編輯 nginx 設定檔案 vim … Continue reading

Posted in Nginx, RTMP, Ubuntu | Leave a comment