nginx+ffmpeg搭建rtmp转播rtsp流的flash服务器

简介: 本文概要:         nginx是非常优秀的开源服务器,用它来做hls或者rtmp流媒体服务器是非常不错的选择。本文介绍了一种简易方法快速搭建rtmp流媒体服务器,也叫rtsp转播,数据源不是读取文件,而是采用获取rtspNal流后使用ffmpeg转播。

本文概要:

       nginx是非常优秀的开源服务器,用它来做hls或者rtmp流媒体服务器是非常不错的选择。本文介绍了一种简易方法快速搭建rtmp流媒体服务器,也叫rtsp转播,数据源不是读取文件,而是采用获取rtspNal流后使用ffmpeg转播。csdn固本培元:leoluopy@gmail.com

开发环境:centos6.4 (主流的linux服务器选择,30%以上的市场占有率)

需要这几个包。

版本号:nginx 1.7.3  openssl 1.0.2   rtmp-module(版本未知)

 

资源:这些都是公网下载的资源,有需要的朋友,可以给我email或者评论留言。email:leoluopy@gmail.com

 

注意:先编译openssl 然后编译nginx

编译选项:

./configure --add-module=../nginx-rtmp-module-master --without-http_rewrite_module --with-openssl=../openssl-1.0.2-beta2

 

一路通过

 

启动时可能出现错误:

Starting nginx: nginx: [emerg] unknown directive "rtmp" in /etc/nginx/nginx.conf:9

没有识别rtmp模块。

另外一种可能,原有centos从源安装了nginx,它不带rtmp模块,需要卸载。

 

安装编译好的nginx后:

进入:

/usr/local/nginx/sbin

./nginx -c /usr/local/nginx/conf/nginx.conf

(注意:后面的需要是绝对地址)



ffmpeg推流 (如果没有flv文件,可以用264,ts这些文件转换,ffmpeg的常用命令本博客另一篇文章也有简要介绍)

 

ffmpeg -re -i IpCam.flv -f flv rtmp://localhost/myapp/test1

ffmpeg -re -i IpCam.flv -f flv -b 20000000 rtmp://localhost/myapp/test1

 

实时rtsp转rtmp直播流(其实转了rtmp之后会多几秒钟的延迟,不同客户端还不一定一致,我们这里测试的是JWplayer 3秒左右(后面用了个flex的方案,时间延迟提升到2s),稳定时可以在1秒左右,vlc播放器更长了10秒 ~_~!  ,客户端的话还是就用rtsp吧,这样很快,一般延迟可以忽略不计,rtmp本来就是为web端设计的)

rtsp流的获取方法可以参考另外一篇文章:http://blog.csdn.net/gubenpeiyuan/article/details/19072223

 

ffmpeg -re -i RealStream.fifo -f flv -b 20000000 rtmp://localhost/myapp/test1

 

RealStream.fifo  是创建的fifo。 命令: mkfifo RealStream.fifo

启动rtsp获取Nal添加sps和pps位,之后打开fifo实时写入即可。

 

使用vlc测试如下:

 

此后可以将实时流推送到rmp了。

我的方案是live555接收流,串流方式推送至fifo,做rtmp的转发。可能有些延迟,哪位朋友有更好的方案,欢迎交流评论。

其框架如下:非常简单,并容易集成入大流媒体框架。

 

 

Flex方案截图:

 

 

附录:

RTMP配置如下:

 

[plain] view plain copy

 

  1. #user  nobody;  
  2. worker_processes  1;  
  3.  
  4. #error_log  logs/error.log;  
  5. #error_log  logs/error.log  notice;  
  6. #error_log  logs/error.log  info;  
  7.  
  8. #pid        logs/nginx.pid;  
  9.  
  10.  
  11. events {  
  12.    worker_connections  1024;  
  13. }  
  14.  
  15. rtmp {    
  16.    server {    
  17.        listen 1935;    
  18.    
  19.        application myapp {    
  20.            live on;    
  21.    
  22.            #record keyframes;    
  23.            #record_path /tmp;    
  24.            #record_max_size 128K;    
  25.            #record_interval 30s;    
  26.            #record_suffix .this.is.flv;    
  27.    
  28.            #on_publish http://localhost:8080/publish;    
  29.            #on_play http://localhost:8080/play;    
  30.            #on_record_done http://localhost:8080/record_done;    
  31.    
  32.       }    
  33.       application hls {    
  34.             live on;    
  35.             hls on;    
  36.             hls_path /tmp/app;    
  37.             hls_fragment 5s;    
  38.    
  39.    
  40.       }    
  41.    }    
  42. }  
  43.  
  44. http {  
  45.    include       mime.types;  
  46.    default_type  application/octet-stream;  
  47.  
  48.    #log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '  
  49.    #                  '$status $body_bytes_sent "$http_referer" '  
  50.    #                  '"$http_user_agent" "$http_x_forwarded_for"';  
  51.  
  52.    #access_log  logs/access.log  main;  
  53.  
  54.    sendfile        on;  
  55.    #tcp_nopush     on;  
  56.  
  57.    #keepalive_timeout  0;  
  58.    keepalive_timeout  65;  
  59.  
  60.    #gzip  on;  
  61.  
  62.    server {  
  63.        listen       80;  
  64.        server_name  localhost;  
  65.  
  66.        #charset koi8-r;  
  67.  
  68.        #access_log  logs/host.access.log  main;  
  69.  
  70.        location / {  
  71.            root   html;  
  72.            index  index.html index.htm;  
  73.        }  
  74.  
  75.        #error_page  404              /404.html;  
  76.  
  77.        # redirect server error pages to the static page /50x.html  
  78.        #  
  79.        error_page   500 502 503 504  /50x.html;  
  80.        location = /50x.html {  
  81.            root   html;  
  82.        }  
  83.  
  84.        # proxy the PHP scripts to Apache listening on 127.0.0.1:80  
  85.        #  
  86.        #location ~ \.php$ {  
  87.        #    proxy_pass   http://127.0.0.1;  
  88.        #}  
  89.  
  90.        # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000  
  91.        #  
  92.        #location ~ \.php$ {  
  93.        #    root           html;  
  94.        #    fastcgi_pass   127.0.0.1:9000;  
  95.        #    fastcgi_index  index.php;  
  96.        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;  
  97.        #    include        fastcgi_params;  
  98.        #}  
  99.  
  100.        # deny access to .htaccess files, if Apache's document root  
  101.        # concurs with nginx's one  
  102.        #  
  103.        #location ~ /\.ht {  
  104.        #    deny  all;  
  105.        #}  
  106.    }  
  107.  
  108.  
  109.    # another virtual host using mix of IP-, name-, and port-based configuration  
  110.    #  
  111.    #server {  
  112.    #    listen       8000;  
  113.    #    listen       somename:8080;  
  114.    #    server_name  somename  alias  another.alias;  
  115.  
  116.    #    location / {  
  117.    #        root   html;  
  118.    #        index  index.html index.htm;  
  119.    #    }  
  120.    #}  
  121.  
  122.  
  123.    # HTTPS server  
  124.    #  
  125.    #server {  
  126.    #    listen       443 ssl;  
  127.    #    server_name  localhost;  
  128.  
  129.    #    ssl_certificate      cert.pem;  
  130.    #    ssl_certificate_key  cert.key;  
  131.  
  132.    #    ssl_session_cache    shared:SSL:1m;  
  133.    #    ssl_session_timeout  5m;  
  134.  
  135.    #    ssl_ciphers  HIGH:!aNULL:!MD5;  
  136.    #    ssl_prefer_server_ciphers  on;  
  137.  
  138.    #    location / {  
  139.    #        root   html;  
  140.    #        index  index.html index.htm;  
  141.    #    }  
  142.    #}  
  143.  
  144. }  



 

 

参考文章:

nginx的RTMP协议服务器

用开源nginx-rtmp-module搭建flash直播环境

http://www.rosoo.net/a/201307/16696.html

nginx上搭建HLS流媒体服务器

http://blog.csdn.net/cjsafty/article/details/7922849

基于nginx的hls直播系统(记录了rtmp的问题和解决方法)

http://blog.csdn.net/cjsafty/article/details/9108587

C++实现RTMP协议发送H.264编码及AAC编码的音视频

http://www.cnblogs.com/haibindev/archive/2011/12/29/2305712.html

Centos安装FLASHPlayer插件

http://www.linuxidc.com/Linux/2013-03/81073.htm

 

 

ffmpeg推流

ffmpeg -re -i ~/2012.flv -f flv rtmp://192.168.1.102/myapp/test1

 

ffmpeg -re -i IpCam.h264 -vcodec copy -f flv -b 20000000 rtmp://localhost/myapp/test1

 

 

from:http://blog.csdn.net/gubenpeiyuan/article/details/38089013

目录
相关文章
|
2月前
|
应用服务中间件 Linux nginx
Jetson 环境安装(四):jetson nano配置ffmpeg和nginx(亲测)之编译错误汇总
这篇文章是关于在Jetson Nano上配置FFmpeg和Nginx时遇到的编译错误及其解决方案的汇总。
94 4
|
2月前
|
编解码 Ubuntu 应用服务中间件
Jetson 环境安装(三):jetson nano配置ffmpeg和nginx(亲测)
本文介绍了在NVIDIA Jetson Nano上配置FFmpeg和Nginx的步骤,包括安装、配置和自启动设置。
161 1
Jetson 环境安装(三):jetson nano配置ffmpeg和nginx(亲测)
|
2月前
|
网络协议 应用服务中间件 nginx
FFmpeg错误笔记(一):nginx-rtmp-module推流出现 Server error: Already publishing
这篇文章讨论了在使用nginx-rtmp-module进行RTMP推流时遇到的“Server error: Already publishing”错误,分析了错误原因,并提供了详细的解决办法,包括修改nginx配置文件和终止异常的TCP连接。
150 0
FFmpeg错误笔记(一):nginx-rtmp-module推流出现 Server error: Already publishing
|
3月前
|
应用服务中间件 nginx
一文搞定Nginx配置RTMP!
一文搞定Nginx配置RTMP!
137 3
|
4月前
|
Ubuntu 应用服务中间件 Linux
在Linux中,如何配置Web服务器(如Apache或Nginx)?
在Linux中,如何配置Web服务器(如Apache或Nginx)?
|
4月前
|
负载均衡 应用服务中间件 Linux
"揭晓nginx的神秘力量:如何实现反向代理与负载均衡,拯救服务器于水火?"
【8月更文挑战第20天】在Linux环境下,nginx作为高性能HTTP服务器与反向代理工具,在网站优化及服务器负载均衡中扮演重要角色。本文通过电商平台案例,解析nginx如何解决服务器压力大、访问慢的问题。首先介绍反向代理原理,即客户端请求经由代理服务器转发至内部服务器,隐藏真实服务器地址;并给出配置示例。接着讲解负载均衡原理,通过将请求分发到多个服务器来分散负载,同样附有配置实例。实践表明,采用nginx后,不仅服务器压力得到缓解,还提升了访问速度与系统稳定性。
87 3
|
4月前
|
负载均衡 应用服务中间件 Apache
Nginx与Apache的终极对决:揭秘Web服务器界的“速度与激情”!你不可不知的性能霸主如何颠覆传统,震撼互联网的根基!
【8月更文挑战第13天】互联网技术发展中,Web服务器至关重要,Nginx与Apache是最广泛使用的两种。Apache历史悠久,但Nginx以轻量级和高性能脱颖而出。Nginx采用事件驱动架构,高效处理大量并发连接,而Apache使用进程驱动,高并发下资源消耗大。以餐厅为例,Nginx像大堂经理同时处理多个顾客需求,远比Apache为每位顾客分配服务员更高效。性能测试显示Nginx处理能力远超Apache。此外,Nginx配置简洁灵活,尤其在负载均衡方面表现突出。尽管Apache适合动态内容处理,但在快速变化的互联网环境中,Nginx因其独特优势成为许多开发者和企业的首选。
66 7
|
4月前
|
应用服务中间件 网络安全 nginx
运维专题.Docker+Nginx服务器的SSL证书安装
运维专题.Docker+Nginx服务器的SSL证书安装
142 3
|
4月前
|
应用服务中间件 Linux 网络安全
在Linux中,如何配置Apache或Nginx Web服务器?
在Linux中,如何配置Apache或Nginx Web服务器?
|
5月前
|
应用服务中间件 Linux nginx
FFmpeg开发笔记(四十)Nginx集成rtmp模块实现RTMP推拉流
《FFmpeg开发实战》书中介绍了如何使用FFmpeg向网络推流,简单流媒体服务器MediaMTX不适用于复杂业务。nginx-rtmp是Nginx的RTMP模块,提供基本流媒体服务。要在Linux上集成rtmp,需从官方下载nginx和nginx-rtmp-module源码,解压后在nginx目录配置并添加rtmp模块,编译安装。配置nginx.conf启用RTMP服务,监听1935端口。使用ffmpeg推流测试,如能通过VLC播放,表明nginx-rtmp运行正常。更多详情见书本。
122 0
FFmpeg开发笔记(四十)Nginx集成rtmp模块实现RTMP推拉流
下一篇
无影云桌面