支持enhanced-rtmp(H265)
This commit is contained in:
parent
b580d6c736
commit
9317665058
|
|
@ -69,6 +69,7 @@
|
||||||
- 支持H264/H265/AAC/G711/OPUS编码,其他编码能转发但不能转协议
|
- 支持H264/H265/AAC/G711/OPUS编码,其他编码能转发但不能转协议
|
||||||
- 支持[RTMP-H265](https://github.com/ksvc/FFmpeg/wiki)
|
- 支持[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)
|
- 支持[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
|
||||||
- 支持HLS文件(mpegts/fmp4)生成,自带HTTP文件服务器
|
- 支持HLS文件(mpegts/fmp4)生成,自带HTTP文件服务器
|
||||||
|
|
|
||||||
|
|
@ -68,6 +68,7 @@
|
||||||
- Supports H264/H265/AAC/G711/OPUS encoding. Other encodings can be forwarded but cannot be converted to protocol
|
- 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-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 [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
|
- HLS
|
||||||
- Supports HLS file(mpegts/fmp4) generation and comes with an HTTP file server
|
- Supports HLS file(mpegts/fmp4) generation and comes with an HTTP file server
|
||||||
|
|
|
||||||
|
|
@ -367,7 +367,7 @@ struct RtmpPacketInfo {
|
||||||
} video;
|
} 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);
|
CodecId parseVideoRtmpPacket(const uint8_t *data, size_t size, RtmpPacketInfo *info = nullptr);
|
||||||
|
|
||||||
}//namespace mediakit
|
}//namespace mediakit
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue