├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── config.go ├── config.json ├── doc ├── demo2.png ├── demo3.png └── demo4.png ├── go.mod ├── go.sum ├── http.go ├── main.go ├── stream.go └── web ├── static ├── css │ ├── bootstrap-grid.css │ ├── bootstrap-grid.css.map │ ├── bootstrap-grid.min.css │ ├── bootstrap-grid.min.css.map │ ├── bootstrap-reboot.css │ ├── bootstrap-reboot.css.map │ ├── bootstrap-reboot.min.css │ ├── bootstrap-reboot.min.css.map │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ └── bootstrap.min.css.map └── js │ ├── adapter-latest.js │ ├── app.js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.js.map │ ├── bootstrap.bundle.min.js │ ├── bootstrap.bundle.min.js.map │ ├── bootstrap.js │ ├── bootstrap.js.map │ ├── bootstrap.min.js │ ├── bootstrap.min.js.map │ └── jquery-3.4.1.min.js └── templates ├── index.tmpl └── player.tmpl /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .idea/ 3 | 4 | bin/ 5 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/config.go -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/config.json -------------------------------------------------------------------------------- /doc/demo2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/doc/demo2.png -------------------------------------------------------------------------------- /doc/demo3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/doc/demo3.png -------------------------------------------------------------------------------- /doc/demo4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/doc/demo4.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/go.sum -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/http.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/main.go -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/stream.go -------------------------------------------------------------------------------- /web/static/css/bootstrap-grid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-grid.css -------------------------------------------------------------------------------- /web/static/css/bootstrap-grid.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-grid.css.map -------------------------------------------------------------------------------- /web/static/css/bootstrap-grid.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-grid.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap-grid.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-grid.min.css.map -------------------------------------------------------------------------------- /web/static/css/bootstrap-reboot.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-reboot.css -------------------------------------------------------------------------------- /web/static/css/bootstrap-reboot.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-reboot.css.map -------------------------------------------------------------------------------- /web/static/css/bootstrap-reboot.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-reboot.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap-reboot.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap-reboot.min.css.map -------------------------------------------------------------------------------- /web/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap.css.map -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/static/css/bootstrap.min.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/css/bootstrap.min.css.map -------------------------------------------------------------------------------- /web/static/js/adapter-latest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/adapter-latest.js -------------------------------------------------------------------------------- /web/static/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/app.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.bundle.js.map -------------------------------------------------------------------------------- /web/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.bundle.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.bundle.min.js.map -------------------------------------------------------------------------------- /web/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.js.map -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/static/js/bootstrap.min.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/bootstrap.min.js.map -------------------------------------------------------------------------------- /web/static/js/jquery-3.4.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/static/js/jquery-3.4.1.min.js -------------------------------------------------------------------------------- /web/templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/templates/index.tmpl -------------------------------------------------------------------------------- /web/templates/player.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlexxIT/RTSPtoWebRTC/HEAD/web/templates/player.tmpl --------------------------------------------------------------------------------