├── .github ├── FUNDING.yml └── workflows │ └── tag.yml ├── .gitignore ├── LICENSE ├── README.md ├── examples ├── AllFeatures │ ├── AllFeatures.ino │ ├── RTSPConfig.h │ └── camera_pins.h └── BasicVideo │ ├── BasicVideo.ino │ ├── RTSPConfig.h │ └── camera_pins.h ├── extras ├── advance.png ├── open.png ├── pref.png ├── rtsp.png └── subtitles.png ├── keywords.txt ├── library.properties ├── src ├── ESP32-RTSPServer.cpp ├── ESP32-RTSPServer.h ├── genUtils.cpp ├── netUtils.cpp ├── rtpPackets.cpp └── rtspHandles.cpp └── vlc.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: [RjSachse] -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/README.md -------------------------------------------------------------------------------- /examples/AllFeatures/AllFeatures.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/examples/AllFeatures/AllFeatures.ino -------------------------------------------------------------------------------- /examples/AllFeatures/RTSPConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/examples/AllFeatures/RTSPConfig.h -------------------------------------------------------------------------------- /examples/AllFeatures/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/examples/AllFeatures/camera_pins.h -------------------------------------------------------------------------------- /examples/BasicVideo/BasicVideo.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/examples/BasicVideo/BasicVideo.ino -------------------------------------------------------------------------------- /examples/BasicVideo/RTSPConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/examples/BasicVideo/RTSPConfig.h -------------------------------------------------------------------------------- /examples/BasicVideo/camera_pins.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/examples/BasicVideo/camera_pins.h -------------------------------------------------------------------------------- /extras/advance.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/extras/advance.png -------------------------------------------------------------------------------- /extras/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/extras/open.png -------------------------------------------------------------------------------- /extras/pref.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/extras/pref.png -------------------------------------------------------------------------------- /extras/rtsp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/extras/rtsp.png -------------------------------------------------------------------------------- /extras/subtitles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/extras/subtitles.png -------------------------------------------------------------------------------- /keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/keywords.txt -------------------------------------------------------------------------------- /library.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/library.properties -------------------------------------------------------------------------------- /src/ESP32-RTSPServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/src/ESP32-RTSPServer.cpp -------------------------------------------------------------------------------- /src/ESP32-RTSPServer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/src/ESP32-RTSPServer.h -------------------------------------------------------------------------------- /src/genUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/src/genUtils.cpp -------------------------------------------------------------------------------- /src/netUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/src/netUtils.cpp -------------------------------------------------------------------------------- /src/rtpPackets.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/src/rtpPackets.cpp -------------------------------------------------------------------------------- /src/rtspHandles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/src/rtspHandles.cpp -------------------------------------------------------------------------------- /vlc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rjsachse/ESP32-RTSPServer/HEAD/vlc.md --------------------------------------------------------------------------------