#服务器 ## nginx-rtmp 修改版 [已编译运行] 支持rtmp、http-flv、http-ts、hls、hls+(内存切片) 直播服务( 支持mp3、h265编码 ) https://github.com/im-pingo/nginx-rtmp-module 其它参考: https://github.com/adwpc/nginx-rtmp-module https://github.com/aileone/nginx-rtmp-module <---重要 **已在内网服务器部署**,能正常rtmp推流和hls切片工作 ``` http://192.168.0.18/rtmp_stat ``` ## ZLMediakit [已编译] 打包多种流媒体协议(RTSP/RTMP/HLS/HTTP-FLV/Websocket-FLV),支持协议间的互相转换 https://github.com/xiongziliang/ZLMediaKit ## media-server [参考] libmpeg https://github.com/ireader/media-server https://github.com/ireader/media-server/tree/master/libmpeg ## SRS 打入H265 patch后可支持h265 rtmp,但是无法保存hls文件 https://github.com/ossrs/srs ## EasyDarwin RTSP推模式转发、RTSP拉模式转发、录像、检索、回放、关键帧缓存、秒开画面、RESTful接口、WEB后台管理、分布式负载均衡 https://github.com/EasyDarwin/EasyDarwin ## gpac https://github.com/gpac/gpac ## shaka-packager https://github.com/google/shaka-packager # 播放器 ## 播放推流SDK daniuSDK 需收费 https://github.com/daniulive/SmarterStreaming ## OBS Obs Studio 插件,腾讯云支持rtmp H265+quic加速推流 https://mc.qcloudimg.com/static/qc_doc/e1f3e604039cfe8c824f99fbc0cb8880/doc-Mobile+Live+Video+Broadcasting-Obs+Studio+Plugin.pdf ## ffmpeg libx265 encoder https://trac.ffmpeg.org/wiki/Encode/H.265 增加H265 rtmp推流支持 https://github.com/ksvc/FFmpeg/wiki/instructions https://github.com/ksvc/FFmpeg/wiki https://github.com/CDN-Union/Code/tree/master/flv265-ChinaNetCenter https://www.jianshu.com/p/ac7d4037add7 参考链接: https://blog.csdn.net/smallhujiu/article/details/81703434 ## WEB播放器 ### WasmVideoPlayer 使用WASM、FFmpeg、WebGL、Web Audio等组件实现了一个简易的支持H265的Web播放器,作为探索、验证 https://github.com/sonysuqin/WasmVideoPlayer ### 金山云H265 Web播放器 在支持WebAssembly的浏览器上播放FLVhttp-flv协议的直播视频和mp4格式的点播视频。 https://github.com/ksvc/h265webplayer demo: https://roblin.cn/wasm/ 花椒直播 webassembly方案 https://mlog.club/article/18560 在 Web 端进行软解码首先会想到使用 JavaScript。libde265.js 是用 C 开发的开源 H.265 编解码器 libde265 的 JavaScript 版本(确切地说是 libde265 的 asm.js 版本,后面会说明)。经测试,使用 libde265.js 并不是一个音视频播放的完善方案,存在帧率偏低和音视频不同步等问题。此外,JavaScript 作为解释型脚本语言,对于 H.265 解码这种重度 CPU 密集型的计算任务而言,也不是理想的选择,于是继续探寻更优方案。 Web端H.265播放器研发解密 https://fed.taobao.org/blog/2019/03/19/web-player-h265/ 通过WebAssembly在移动端解码H.265 https://cloud.tencent.com/developer/article/1453425 ## Android/iOS video player ### ijkplayer h265 is disabled by default, you need to modify config/module-lite.sh to enable it, see README. https://github.com/bilibili/ijkplayer mpegts 支持H265只能在PC、Android浏览器上播放 iOS不行 https://blog.csdn.net/smallhujiu/article/details/81703434 RTMP进行了标准扩展,播放器上ijkplayer也扩展了该修改。 ### ZFPlayer 基于AVPlayer,支持横屏、竖屏(全屏播放还可锁定屏幕方向),上下滑动调节音量、屏幕亮度,左右滑动调节播放进度。 https://github.com/Sky0372Lsk/ZFPlayer # 流媒体协议 ## RTSP Server:ZLMediaKit 支持H265/H264/AAC codec. 参考链接: RTP Payload Format for High Efficiency Video Coding (HEVC) https://www.rfc-editor.org/rfc/pdfrfc/rfc7798.txt 如何支持RTSP播放H.265(HEVC)流 https://blog.csdn.net/renhui1112/article/details/81212213 如何对RTSP播放器做功能和性能评估 https://cloud.tencent.com/developer/article/1535580 ## RTMP FLV H265直播相关 [https://toss156.github.io/2018/01/10/FLV%20H265直播相关/](https://toss156.github.io/2018/01/10/FLV H265直播相关/) https://github.com/WangLCG/C-plus-plus/tree/1599f6a32a1b7023f744f8d7a6e94a4669fccdb0 支持hevc flv ffmpeg已完成编译 ``` /root/ffmpeg_sources/ffmpeg ``` 修改文件: ``` libavformat/flv.h libavformat/flvenc.c libavformat/flvdec.c ``` nginx-rtmp stat模块无法准确识别H265编码 测试推流命令行: ``` ~/bin/ffmpeg -re -i rtsp://192.168.3.101/ch01 -c:v libx265 -profile:v main -c:a aac -b:a 128k -f flv rtmp://127.0.0.1:1935/live/test ``` ## TS H265封装成TS流,查看openHEVC-ffmpeg-2.5源代码,及一些H265的TS流视频文件,基本的方式跟H264是一样的,这里主要注意的地方就是流类型不一样,H264的值为0x1b,H265的值为:0x24 **MPEG-2 TS** https://blog.csdn.net/smallhujiu/article/details/80753765 转格式: ``` ffmpeg -i input.mp4 -c copy output.ts ffmpeg -i input.mp4 -c copy output.flv #从1.mp4 copy一个文件,使其moov头在尾部 ffmpeg -i 1.mp4 -c copy -f mp4 output.mp4 #从1.mp4 copy一个文件,使其moov头在头部: ffmpeg -i 1.mp4 -c copy -f mp4 -movflags faststart output2.mp4 #测试flv->ts ~/bin/ffmpeg -i rtmp://127.0.0.1:1935/live/testh265 -c copy -y -f mpegts 265.ts 报错: video:0kB audio:0kB subtitle:0kB other streams:0kB global headers:0kB muxing overhead: unknown ``` GPAC可以把x265生成的hevc流(.hevc)打包成.mp4和.ts文件,其使用方法如下: **MP4Box** ``` ./MP4Box -add name_of_annexB_bitstream.(bit,bin,265) -fps 50 -new output.mp4 ./MP4Box -v -add Catus_1920x1080_50_qp32.bin:FMT=HEVC -fps 50 -new output.mp4 ./MP4Client output.mp4 # to play HEVC mp4 content ``` **mp42ts** ``` ./mp42ts -prog=hevc.mp4 -dst-file=test.ts ./mp42ts -prog=output.mp4 -dst-file=hevc.ts ./MP4Client test.ts # to play HEVC transport streams ``` ## HLS ZLMediakia支持 RTSP[S] --> HLS H265 HEVC支持苹果HLS的几个关键问题 https://blog.csdn.net/vn9PLgZvnPs1522s82g/article/details/79237855 # 直播平台 和 CDN ## 金山云 https://www.ksyun.com/proservice/cloud_live ## 腾讯云 https://cloud.tencent.com/document/product/267/32831 ## 京东云 https://www.jdcloud.com/cn/products/live-video ## 虎牙直播 虎牙直播目前支持H.264和H.265标准。 https://help.huya.com/298 # 市场情况 HEVC、AV1、VVC:如何理解2019年的编解码器世界 https://juejin.im/post/5d7f2f376fb9a06acd45529e 编解码器之战:AV1、HEVC、VP9和VVC https://zhuanlan.zhihu.com/p/49503955 腾讯V265编码器:给用户以完备的265体验 https://blog.csdn.net/vn9PLgZvnPs1522s82g/article/details/100977340