diff --git a/README.md b/README.md index b3ea16cf..c8ce0a2b 100644 --- a/README.md +++ b/README.md @@ -69,6 +69,7 @@ - 支持H264/H265/AAC/G711/OPUS编码,其他编码能转发但不能转协议 - 支持[RTMP-H265](https://github.com/ksvc/FFmpeg/wiki) - 支持[RTMP-OPUS](https://github.com/ZLMediaKit/ZLMediaKit/wiki/RTMP%E5%AF%B9H265%E5%92%8COPUS%E7%9A%84%E6%94%AF%E6%8C%81) + - 支持[enhanced-rtmp(H265)](https://github.com/veovera/enhanced-rtmp) - HLS - 支持HLS文件(mpegts/fmp4)生成,自带HTTP文件服务器 diff --git a/README_en.md b/README_en.md index 84894a74..1d83966d 100644 --- a/README_en.md +++ b/README_en.md @@ -68,6 +68,7 @@ - Supports H264/H265/AAC/G711/OPUS encoding. Other encodings can be forwarded but cannot be converted to protocol - Supports [RTMP-H265](https://github.com/ksvc/FFmpeg/wiki) - Supports [RTMP-OPUS](https://github.com/ZLMediaKit/ZLMediaKit/wiki/RTMP%E5%AF%B9H265%E5%92%8COPUS%E7%9A%84%E6%94%AF%E6%8C%81) + - Supports [enhanced-rtmp(H265)](https://github.com/veovera/enhanced-rtmp) - HLS - Supports HLS file(mpegts/fmp4) generation and comes with an HTTP file server diff --git a/src/Rtmp/Rtmp.h b/src/Rtmp/Rtmp.h index 3ebe815f..c7fd5262 100644 --- a/src/Rtmp/Rtmp.h +++ b/src/Rtmp/Rtmp.h @@ -367,7 +367,7 @@ struct RtmpPacketInfo { } video; }; }; -// https://github.com/veovera/enhanced-rtmp/blob/main/enhanced-rtmp-v1.pdf +// https://github.com/veovera/enhanced-rtmp CodecId parseVideoRtmpPacket(const uint8_t *data, size_t size, RtmpPacketInfo *info = nullptr); }//namespace mediakit