在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → ffmpeg+nginx+nginx-rtmp-module搭建个人直播平台.rar

ffmpeg+nginx+nginx-rtmp-module搭建个人直播平台.rar

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:71.78M
  • 下载次数:34
  • 浏览次数:194
  • 发布时间:2021-11-24
  • 实例类别:一般编程问题
  • 发 布 人:js2021
  • 文件格式:.rar
  • 所需积分:2
 

实例介绍

【实例简介】
ffmpeg+nginx+nginx-rtmp-module搭建个人直播平台。 使用说明(ffmpeg+nginx+rtmp-module已经整合,支持HTTP,具体配置查看conf/nginx.conf): 1.解压后,运行nginx_start.bat。(查看监控状态 http://127.0.0.1:8080/stat。http已配置成8080端口,确保8080端口未使用) 2.执行ffmpeg-20200826-8f2c1f2-win64-static/bin/ffmpeg_start.bat本地推流。
【实例截图】
【核心代码】
qq_29114677-13012815-ffmpeg+nginx_1.7.11.3_Gryphon(nginx-rtmp-module-master).rar
└── ffmpeg+nginx_1.7.11.3_Gryphon(nginx-rtmp-module-master)
├── ajp_temp
├── conf
│   ├── EBLB
│   │   ├── iworkcomproto.lua
│   │   ├── upstream_candc.conf
│   │   ├── upstreamcontrol.lua
│   │   ├── upstream_EBLB_with_IWCP.txt
│   │   └── upstreamstatus.lua
│   ├── fastcgi.conf
│   ├── fastcgi_params
│   ├── koi-utf
│   ├── koi-win
│   ├── mime.types
│   ├── mysite.rules
│   ├── naxsi_core.rules
│   ├── nginx.conf
│   ├── nginx-org.conf
│   ├── nginx-simple-WAF.conf
│   ├── nginx-win.conf
│   ├── nginx-win-rtmp.conf
│   ├── php-opcache-example.ini
│   ├── php-xcache-example.ini
│   ├── scgi_params
│   ├── uwsgi_params
│   ├── vhts
│   │   ├── VHTS.txt
│   │   ├── vtsvalues-eop.js
│   │   └── vtsvalues.js
│   └── win-utf
├── contrib
│   ├── geo2nginx.pl
│   ├── README
│   ├── unicode2nginx
│   │   ├── koi-utf
│   │   ├── unicode-to-nginx.pl
│   │   └── win-utf
│   └── vim
│   ├── ftdetect
│   │   └── nginx.vim
│   ├── indent
│   │   └── nginx.vim
│   └── syntax
│   └── nginx.vim
├── docs
│   ├── LICENSE
│   ├── OpenSSL.LICENSE
│   ├── PCRE.LICENCE
│   ├── README
│   └── zlib.LICENSE
├── FAQ nginx-win version.txt
├── ffmpeg-20200826-8f2c1f2-win64-static
│   ├── bin
│   │   ├── ffmpeg.exe
│   │   ├── ffmpeg_start.bat
│   │   ├── ffplay.exe
│   │   ├── ffprobe.exe
│   │   └── xwlb.mp4
│   ├── doc
│   │   ├── bootstrap.min.css
│   │   ├── default.css
│   │   ├── developer.html
│   │   ├── faq.html
│   │   ├── fate.html
│   │   ├── ffmpeg-all.html
│   │   ├── ffmpeg-bitstream-filters.html
│   │   ├── ffmpeg-codecs.html
│   │   ├── ffmpeg-devices.html
│   │   ├── ffmpeg-filters.html
│   │   ├── ffmpeg-formats.html
│   │   ├── ffmpeg.html
│   │   ├── ffmpeg-protocols.html
│   │   ├── ffmpeg-resampler.html
│   │   ├── ffmpeg-scaler.html
│   │   ├── ffmpeg-utils.html
│   │   ├── ffplay-all.html
│   │   ├── ffplay.html
│   │   ├── ffprobe-all.html
│   │   ├── ffprobe.html
│   │   ├── general.html
│   │   ├── git-howto.html
│   │   ├── libavcodec.html
│   │   ├── libavdevice.html
│   │   ├── libavfilter.html
│   │   ├── libavformat.html
│   │   ├── libavutil.html
│   │   ├── libswresample.html
│   │   ├── libswscale.html
│   │   ├── mailing-list-faq.html
│   │   ├── nut.html
│   │   ├── platform.html
│   │   └── style.min.css
│   ├── LICENSE.txt
│   ├── presets
│   │   ├── ffprobe.xsd
│   │   ├── libvpx-1080p50_60.ffpreset
│   │   ├── libvpx-1080p.ffpreset
│   │   ├── libvpx-360p.ffpreset
│   │   ├── libvpx-720p50_60.ffpreset
│   │   └── libvpx-720p.ffpreset
│   └── README.txt
├── html
│   ├── css
│   │   └── video-js.min.css
│   ├── index.html
│   ├── js
│   │   └── video.min.js
│   └── live
│   ├── css
│   │   └── video-js.min.css
│   ├── index.html
│   └── js
│   └── video.min.js
├── logs
│   ├── access.log
│   ├── error.log
│   └── nginx.pid
├── lua51.dll
├── m3u8File
│   └── xwlb.mp4
├── nginx_basic.exe
├── nginx.exe
├── nginx-rtmp-module-master
│   ├── AUTHORS
│   ├── config
│   ├── dash
│   │   ├── ngx_rtmp_dash_module.c
│   │   ├── ngx_rtmp_mp4.c
│   │   └── ngx_rtmp_mp4.h
│   ├── doc
│   │   └── README.md
│   ├── hls
│   │   ├── ngx_rtmp_hls_module.c
│   │   ├── ngx_rtmp_mpegts.c
│   │   └── ngx_rtmp_mpegts.h
│   ├── LICENSE
│   ├── ngx_rtmp_access_module.c
│   ├── ngx_rtmp_amf.c
│   ├── ngx_rtmp_amf.h
│   ├── ngx_rtmp_auto_push_module.c
│   ├── ngx_rtmp_bandwidth.c
│   ├── ngx_rtmp_bandwidth.h
│   ├── ngx_rtmp_bitop.c
│   ├── ngx_rtmp_bitop.h
│   ├── ngx_rtmp.c
│   ├── ngx_rtmp_cmd_module.c
│   ├── ngx_rtmp_cmd_module.h
│   ├── ngx_rtmp_codec_module.c
│   ├── ngx_rtmp_codec_module.h
│   ├── ngx_rtmp_control_module.c
│   ├── ngx_rtmp_core_module.c
│   ├── ngx_rtmp_eval.c
│   ├── ngx_rtmp_eval.h
│   ├── ngx_rtmp_exec_module.c
│   ├── ngx_rtmp_flv_module.c
│   ├── ngx_rtmp.h
│   ├── ngx_rtmp_handler.c
│   ├── ngx_rtmp_handshake.c
│   ├── ngx_rtmp_init.c
│   ├── ngx_rtmp_limit_module.c
│   ├── ngx_rtmp_live_module.c
│   ├── ngx_rtmp_live_module.h
│   ├── ngx_rtmp_log_module.c
│   ├── ngx_rtmp_mp4_module.c
│   ├── ngx_rtmp_netcall_module.c
│   ├── ngx_rtmp_netcall_module.h
│   ├── ngx_rtmp_notify_module.c
│   ├── ngx_rtmp_play_module.c
│   ├── ngx_rtmp_play_module.h
│   ├── ngx_rtmp_proxy_protocol.c
│   ├── ngx_rtmp_proxy_protocol.h
│   ├── ngx_rtmp_receive.c
│   ├── ngx_rtmp_record_module.c
│   ├── ngx_rtmp_record_module.h
│   ├── ngx_rtmp_relay_module.c
│   ├── ngx_rtmp_relay_module.h
│   ├── ngx_rtmp_send.c
│   ├── ngx_rtmp_shared.c
│   ├── ngx_rtmp_stat_module.c
│   ├── ngx_rtmp_streams.h
│   ├── ngx_rtmp_version.h
│   ├── README.md
│   ├── stat.xsl
│   └── test
│   ├── dump.sh
│   ├── ffstream.sh
│   ├── nginx.conf
│   ├── play.sh
│   ├── README.md
│   ├── rtmp-publisher
│   │   ├── player.html
│   │   ├── publisher.html
│   │   ├── README.md
│   │   ├── RtmpPlayerLight.mxml
│   │   ├── RtmpPlayerLight.swf
│   │   ├── RtmpPlayer.mxml
│   │   ├── RtmpPlayer.swf
│   │   ├── RtmpPublisher.mxml
│   │   ├── RtmpPublisher.swf
│   │   └── swfobject.js
│   └── www
│   ├── bg.jpg
│   ├── index.html
│   ├── jwplayer
│   │   ├── jwplayer.flash.swf
│   │   └── jwplayer.js
│   ├── jwplayer_old
│   │   ├── player.swf
│   │   └── swfobject.js
│   └── record.html
├── nginx_start.bat
├── nginx_stop.bat
├── play.php
├── ProcessRestart
│   └── ProcessRestart
│   ├── ProcessRestart
│   │   ├── bin
│   │   │   └── Debug
│   │   │   ├── ffmpeg_start.bat
│   │   │   ├── ProcessRestart.exe
│   │   │   ├── ProcessRestart.pdb
│   │   │   ├── ProcessRestart.vshost.exe
│   │   │   └── 双向套餐.txt
│   │   ├── Form1.cs
│   │   ├── Form1.Designer.cs
│   │   ├── Form1.resx
│   │   ├── obj
│   │   │   ├── Debug
│   │   │   │   ├── ProcessRestart.csproj.GenerateResource.Cache
│   │   │   │   ├── ProcessRestart.exe
│   │   │   │   ├── ProcessRestart.Form1.resources
│   │   │   │   ├── ProcessRestart.pdb
│   │   │   │   ├── ProcessRestart.Properties.Resources.resources
│   │   │   │   └── TempPE
│   │   │   └── ProcessRestart.csproj.FileListAbsolute.txt
│   │   ├── ProcessRestart.csproj
│   │   ├── Program.cs
│   │   └── Properties
│   │   ├── AssemblyInfo.cs
│   │   ├── Resources.Designer.cs
│   │   ├── Resources.resx
│   │   ├── Settings.Designer.cs
│   │   └── Settings.settings
│   ├── ProcessRestart.sln
│   └── ProcessRestart.suo
├── Readme nginx-win version.txt
├── rec
├── temp
│   ├── client_body_temp
│   ├── fastcgi_temp
│   ├── proxy_temp
│   ├── scgi_temp
│   └── uwsgi_temp
├── Tweak-Optimize tcpip parameters for nginx connections.reg
├── vod
└── 使用说明.txt

50 directories, 206 files

标签:

实例下载地址

ffmpeg+nginx+nginx-rtmp-module搭建个人直播平台.rar

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警