nginx를 사용하여 rtmp 또는 http 기반 flv 및 mp4 스트리밍 미디어 서버 구축

WBOY
풀어 주다: 2016-08-08 09:21:00
원래의
1695명이 탐색했습니다.

http://itindex.net/detail/48702-nginx-rtmp-http

1. 스트리밍 미디어 재생 방법

1. HTTP 방법
이 방법은 FLV 비디오 파일을 다운로드하여 로컬로 재생합니다. FLV 비디오 파일을 다운로드하면 서버 리소스와 대역폭을 소비하지 않지만 드래그 기능은 소비합니다. RTMP/RTMP 스트리밍 미디어 방식이 아닌 YouTube, Tudou, Ku6 등 많은 동영상 웹사이트가 HTTP 방식을 사용하여 구현됩니다.
RTMP/RTMP 스트리밍 미디어 방식
이 방법은 FLV 비디오 파일을 로컬에 다운로드할 필요가 없고 flv 파일을 실시간으로 재생할 수 있으며 재생 진행률 표시줄을 마음대로 드래그 앤 드롭할 수 있지만 서버 리소스를 더 많이 소모합니다. .
2. nginx를 사용하여 flv 스트리밍 미디어 서버 구축
1. git 설치
yum install git
2. 종속성 패키지 설치
yum -y install gcc glibc glibc-devel make nasm pkgconfig lib-devel openssl-devel expat-devel gettext-devel libtool mhash.x86_64 perl-Digest-SHA1 .x86_64
3. ffmpeg 및 해당 종속 패키지를 설치합니다(내 종속 패키지는 /usr/local/src에 설치되지만 설치 위치는 개인 습관에 따라 결정될 수 있음)
다음 설치 패키지는 yum을 사용하여 설치할 수 있습니다. 그렇지 않은 경우 wget을 사용하여 설치해 보세요.
#wget http://www.tortall.net/projects/yasm/releases/yasm-1.2.0.tar.gz
#tar xzvf yasm- 1.2.0.tar.gz
#cd yasm-1.2.0
#./configure
#make
#make install
#cd ..
#git clone git://git.videolan.org/x264
#cd x264
#./configure --enable-shared
#make
#make install
#cd ..
#wget http://downloads.sourceforge.net/project/lame/lame/3.99/lame-3.99.5.tar.gz
#tar xzvf lame-3.99.5.tar.gz
#cd lame-3.99.5
#./configure - -enable-nasm
#make
#make install
#cd ..
# yum install libogg
참고: libogg는 다양한 온라인 튜토리얼에 따라 .tar.gz 패키지를 사용하여 설치됩니다. 그러나 설치 후 libvorbis, libvpx 등을 설치하면 libogg가 설치되는 것을 볼 수 있습니다. 설치 위치를 찾을 수 없어 설치에 실패했습니다. 
#wget http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.3.tar.gz 
#tar xzvf libvorbis-1.3. 3.tar.gz 
#cd libvorbis-1.3.3 
#./configure 
#make 
#make install 
#cd .. 
#git clone http://git.chromium.org/webm/libvpx.git 
#cd libvpx 
#./configure  --enable-shared 
#make 
#make install
#cd .. 
#wget http://downloads.sourceforge.net/project/faac/faad2-src/faad2-2.7/faad2-2.7. tar.gz 
#tar zxvf faad2-2.7.tar.gz 
#cd faad2-2.7 
#./configure 
#make 
#make 설치 
#cd .. 
#wget http:// downloads.sourceforge.net/project/faac/faac-src/faac-1.28/faac-1.28.tar.gz 
#tar zxvf faac-1.28.tar.gz 
#cd faac-1.28 
#./configure 
#make 
#make 설치 
#cd .. 
#wget http://downloads.xvid.org/downloads/xvidcore-1.3.2.tar.gz 
#tar zxvf xvidcore-1.3.2.tar.gz 
#cd xvidcore/build/generic 
#./configure 
#make
#make install 
#cd .. 
#git clone git://source.ffmpeg.org/ffmpeg 
#cd ffmpeg 
#./configure  --prefix=/opt/ffmpeg/ --enable-version3  --enable-libvpx --enable-libfaac --enable -libmp3lame --enable-libvorbis --enable-libx264 --enable-libxvid --enable-shared --enable-gpl --enable-postproc --enable-nonfree  --enable-avfilter --enable-pthreads 
#make && make install
#cd .. 
修改/etc/ld.so.conf 아래: 
include ld.so.conf.d/*.conf 
/lib 
/lib64 
/usr/lib 
/usr/lib64 
/usr/local/ lib 
/usr/local/lib64 
/opt/ffmpeg/lib 
三、安装nginx模块 
#wget http://h264.code-shop.com/download/nginx_mod_h264_streaming-2.2.7.tar.gz 
#tar zxvf nginx_mod_h264_streaming-2.2.7.tar.gz
#git clone git://github.com/arut/nginx-rtmp-module.git 
#yum install pcre 
nginx에는 다음이 포함되어 있습니다.
#tar zxvf nginx-1.2.6.tar.gz
#cd nginx-1.2.6
#./configure --prefix=/usr/local/nginx --add-module=../nginx_mod_h264_streaming-2.2.7 --with-http_flv_module --with-http_gzip_static_module --with-http_stub_status_module --with-http_mp4_module --add-module=../nginx-rtmp-module --add-module=../nginx-rtmp-module/hls --with-cc-opt=-I/opt/ffmpeg/include --with- ld-opt='-L/opt/ffmpeg/lib -Wl,-rpath=/opt/ffmpeg/lib'
#make && make install
설치 yamdi
yadmi의 기능은 flv 파일에 키 프레임을 추가하여 드래그 앤 플레이가 가능하도록 하는 것입니다
#yadmi 다운로드
wget http: //sourceforge.net/projects/yamdi/files/yamdi/1.4/yamdi-1.4.tar.gz/download
#yadmi 설치
tar xzvf yamdi- 1.4.tar.gz
cd yamdi-1.4
make && make install
사용법: yamdi -i input.flv - o out.flv
input.flv 파일에 키 프레임을 추가하면 출력은 out.flv 파일입니다
4. nginx 수정 기본 구성 파일
vi /usr/local/nginx/conf/nginx.conf
user www www
worker_processes 30;
error_log /usr/local/nginx/logs/error.log crit;
pid /usr/local/nginx/logs/nginx.pid
이벤트 {
epoll 사용
Worker_connections 65535

http { 
        include       mime.types; 
        default_type  애플리케이션/옥텟-스트림; 
        log_format main  '$remote_addr - $remote_user [$time_local] ' 
                                            '"$request " $status $bytes_sent ' 
'"$http_referer" "$http_user_agent" ' 
                                       '"$gzip_ratio"'; 
        keepalive_timeout  60; 
        server_names_hash_bucket_size  128; 
        client_header_buffer_size    32k; 
        Large_client_header_buffers  4 32k; 
        access_log off; 
        gzip을 사용합니다. 
        gzip_min_length  1100; 
        gzip_buffers     4 8k; 
        gzip_types       text/plain; 
        출력_버퍼   1 32k; 
        연기_출력  1460; 
        client_header_timeout  3분; 
        client_body_timeout    3분; 
        send_timeout           3분; 
        sendfile                켜기; 
        tcp_nopush              켜기; 
        tcp_nodelay             켜기; 
서버 { 
        듣기       80; 
        서버_이름  192.168.1.105; 
        루트  /usr/local/nginx/html/; 
       limit_rate_5분 이후;    ####在flv视频文件下载了5M以后开始限速 
         한도 속도 512k;        ####速島限조제为512K 
        index   index.html; 
        문자셋 utf-8; 
        위치 ~ .flv { 
            flv; 
        } 
        위치 ~ .mp4$ { 
                mp4; 
        }
error_page 500 502 503 504 /50x.html;
location = /50x.html {
루트 html 🎜>
}
}
}
5. nginx 시작
탐지 시작 nginx.conf 파일 구성 확인 전
/usr/nginx/sbin/nginx -t
오류가 있으면 오류 행 수에 따라 수정합니다. .
오류가 보고되는 경우: [오류]: "/var/run/nginx.pid"의 잘못된 PID 번호 ""
usr/local/nginx/ sbin/nginx -c /usr/local/nginx/conf/nginx.conf
nginx 시작
/usr/local/nginx/sbin/nginx -s reload
테스트
http://192.168.1.105/player.swf?type=http&file=test1.flv
(여기서 플레이어 .swf는 플레이어, test1.flv는 동영상 파일입니다.)
플레이어는 동영상 파일과 함께 배치되어야 합니다.
동영상 파일의 위치는 nginx.conf에 구성된 위치에 해당합니다.
이 기사의 첨부 파일을 다운로드하세요: play.rar(89KB)
nginx-0.8.55.tar.gz(632.6KB)
위 내용은 관련 내용을 포함하여 nginx를 사용하여 rtmp 또는 http 기반의 flv 및 mp4 스트리밍 미디어 서버를 구축하는 방법을 소개합니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿