├── .dockerignore ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── go.sum ├── main.go ├── main_test.go ├── server-client.go ├── server-tcpl.go ├── server-udpl.go ├── stream-udpl.go ├── stream.go └── test-images ├── ffmpeg ├── Dockerfile ├── emptyvideo.ts └── start.sh └── rtsp-simple-server ├── Dockerfile └── start.sh /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /release 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/main.go -------------------------------------------------------------------------------- /main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/main_test.go -------------------------------------------------------------------------------- /server-client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/server-client.go -------------------------------------------------------------------------------- /server-tcpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/server-tcpl.go -------------------------------------------------------------------------------- /server-udpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/server-udpl.go -------------------------------------------------------------------------------- /stream-udpl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/stream-udpl.go -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/stream.go -------------------------------------------------------------------------------- /test-images/ffmpeg/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/test-images/ffmpeg/Dockerfile -------------------------------------------------------------------------------- /test-images/ffmpeg/emptyvideo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/test-images/ffmpeg/emptyvideo.ts -------------------------------------------------------------------------------- /test-images/ffmpeg/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | ffmpeg $@ 4 | 5 | echo "all right" 6 | -------------------------------------------------------------------------------- /test-images/rtsp-simple-server/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aler9/rtsp-simple-proxy/HEAD/test-images/rtsp-simple-server/Dockerfile -------------------------------------------------------------------------------- /test-images/rtsp-simple-server/start.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -e 2 | 3 | rtsp-simple-server $@ 2>&1 4 | --------------------------------------------------------------------------------