├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── samples └── .gitkeep └── src ├── main.cpp ├── streamer.cpp └── streamer.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/README.md -------------------------------------------------------------------------------- /samples/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/streamer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/src/streamer.cpp -------------------------------------------------------------------------------- /src/streamer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juniorxsound/libav-RTMP-Streaming/HEAD/src/streamer.h --------------------------------------------------------------------------------