├── .gitignore ├── LICENSE ├── README.en.md ├── README.md ├── batcher.go ├── go.mod ├── go.sum ├── io.go ├── main.go ├── publish.html ├── publisher.go ├── subscribe.html ├── subscriber.go └── webrtc └── config.go /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | .vscode 3 | node_modules 4 | /.history 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/README.md -------------------------------------------------------------------------------- /batcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/batcher.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/go.sum -------------------------------------------------------------------------------- /io.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/io.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/main.go -------------------------------------------------------------------------------- /publish.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/publish.html -------------------------------------------------------------------------------- /publisher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/publisher.go -------------------------------------------------------------------------------- /subscribe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/subscribe.html -------------------------------------------------------------------------------- /subscriber.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/subscriber.go -------------------------------------------------------------------------------- /webrtc/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Monibuca/plugin-webrtc/HEAD/webrtc/config.go --------------------------------------------------------------------------------