├── .gitattributes ├── .gitignore ├── README.md ├── RTMPStreaming.cpp ├── RTMPStreaming.h ├── RTSPStreaming.cpp ├── RTSPStreaming.h ├── Rtsp2Rtmp.cpp ├── Rtsp2Rtmp.h ├── librtmp ├── amf.h ├── bytes.h ├── dh.h ├── dhgroups.h ├── handshake.h ├── http.h ├── librtmp.lib ├── log.h ├── rtmp.h └── rtmp_sys.h ├── main.cpp ├── parameters.h └── test.php /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/README.md -------------------------------------------------------------------------------- /RTMPStreaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/RTMPStreaming.cpp -------------------------------------------------------------------------------- /RTMPStreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/RTMPStreaming.h -------------------------------------------------------------------------------- /RTSPStreaming.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/RTSPStreaming.cpp -------------------------------------------------------------------------------- /RTSPStreaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/RTSPStreaming.h -------------------------------------------------------------------------------- /Rtsp2Rtmp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/Rtsp2Rtmp.cpp -------------------------------------------------------------------------------- /Rtsp2Rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/Rtsp2Rtmp.h -------------------------------------------------------------------------------- /librtmp/amf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/amf.h -------------------------------------------------------------------------------- /librtmp/bytes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/bytes.h -------------------------------------------------------------------------------- /librtmp/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/dh.h -------------------------------------------------------------------------------- /librtmp/dhgroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/dhgroups.h -------------------------------------------------------------------------------- /librtmp/handshake.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/handshake.h -------------------------------------------------------------------------------- /librtmp/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/http.h -------------------------------------------------------------------------------- /librtmp/librtmp.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/librtmp.lib -------------------------------------------------------------------------------- /librtmp/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/log.h -------------------------------------------------------------------------------- /librtmp/rtmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/rtmp.h -------------------------------------------------------------------------------- /librtmp/rtmp_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/librtmp/rtmp_sys.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/main.cpp -------------------------------------------------------------------------------- /parameters.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | // #define DECODER -------------------------------------------------------------------------------- /test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChihChengYang/c-RTSPtoRTMPStreaming/HEAD/test.php --------------------------------------------------------------------------------