本文由雲+社區發表做者:周超nginx
隨着直播平臺爆發式增加,直播平臺從 PC 端轉戰移動端,緊跟着直播的潮流,本身學習實現了一套簡單的 H5 視頻推流的解決方案,下面就給小夥伴們分享一下本身學習過程當中的經驗。web
一、 配置、安裝 Nginx;vim
# ./configure --sbin-path=/usr/local/nginx/nginx --conf-path=/usr/local/nginx/nginx.pid --with-http_ssl_module --with-pcre=/usr/local/src/pcre-8.39 --with-zlib=/usr/local/src/zlib-1.2.11 --with-openssl=/usr/local/openssl/ # make # make install # /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf //啓動Ngnix # netstat -ano | grep 80
二、擴展 Nginx-rtmp-module服務器
# ./configure --add-module=/usr/local/src/nginx-rtmp-module-master --with-openssl=/usr/local/openssl/ # make # make install # vim /usr/local/ngnix/conf/ngnix.conf include /usr/localcinx-rtmp-module-master/testinx.conf; # vim /usr/localcinx-rtmp-module-master/testinx.conf rtmp { server { listen 1935; application myapp { live on; #record keyframes; #record_path /tmp; #record_max_size 128K; #record_interval 30s; #record_suffix .this.is.flv; #on_publish http://localhost:8080/publish; #on_play http://localhost:8080/play; #on_record_done http://localhost:8080/record_done; } application hls { live on; hls on; hls_path /tmp/hls; hls_fragment 10s; #每一個視頻切片的時長。 hls_playlist_length 60s; #總共能夠回看的事件,這裏設置的是1分鐘。 #hls_continuous on; #連續模式。 #hls_cleanup on; #對多餘的切片進行刪除。 #hls_nested on; #嵌套模式。 } } } http { server { listen 8080; location /stat { rtmp_stat all; rtmp_stat_stylesheet stat.xsl; } location /stat.xsl { root /usr/local/src/nginx-rtmp-module-master/; } location /control { rtmp_control all; } location /rtmp-publisher { root /usr/local/src/nginx-rtmp-module-master/test; } location /hls { #server hls fragments types{ application/vnd.apple.mpegurl m3u8; video/mp2t ts; } #alias /tmp/app; root /tmp; expires -1; } location / { root /usr/local/src/nginx-rtmp-module-master/test/rtmp-publisher; } } } # /usr/local/nginx/sbin/nginx -c /usr/local/nginx/conf/nginx.conf # netstat -ltn #查看端口的監聽狀況
三、 安裝 ffmpegapp
# ./configure --prefix=/usr/local/ffmpeg # make # make install
至於 ffmpeg 是啥?詳細介紹能夠參考:《【經驗分享】音頻、視頻利器——FFmpeg》ide
# ffmpeg -re -i test.flv -vcodec copy -acodec copy -f flv rtmp://ip:1935/myapp/mystream
注:RTMP(Real Time Messaging Protocol),實時消息傳輸協議,用於視頻直播協議,和 HLS 同樣均可以應用於視頻直播;學習
ffmpeg -re -i test.mp4 -c copy -f flv rtmp://ip:1935/hls/mystream
注:HLS(HTTP Live Streaming), Apple 的動態碼率自適應技術,主要用於 PC 和 Apple 終端的音視頻服務;this
<video autoplay webkit-playsinline> <source src="http://ip/hls/mystream.m3u8" type="application/vnd.apple.mpegurl" /> <p class="warning">Your browser does not support HTML5 video.</p> </video>
根據以上的流程,簡單的實現了一個視頻直播的流服務器來推送直播流,而且能夠在 H5 頁面上播放視頻流。有興趣的小夥伴們也能夠嘗試一下~url
此文已由騰訊雲+社區在各渠道發佈spa
獲取更多新鮮技術乾貨,能夠關注咱們騰訊雲技術社區-雲加社區官方號及知乎機構號