├── .github └── workflows │ ├── create-release-from-changelog.yml │ └── release.yml ├── .gitignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── client ├── dist │ ├── index.js │ ├── src │ │ ├── index.d.ts │ │ └── types.d.ts │ └── test │ │ └── index.test.d.ts ├── package.json ├── src │ ├── index.ts │ └── types.ts ├── test │ └── index.test.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js ├── doc ├── how-it-works.drawio └── how-it-works.png ├── example ├── index.ts ├── package-lock.json ├── package.json └── public │ └── index.html ├── package.json └── server ├── package.json ├── src ├── connection.ts ├── ffmpeg.ts ├── index.ts └── types.ts ├── tsconfig.json └── tslint.json /.github/workflows/create-release-from-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/.github/workflows/create-release-from-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/README.md -------------------------------------------------------------------------------- /client/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/dist/index.js -------------------------------------------------------------------------------- /client/dist/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/dist/src/index.d.ts -------------------------------------------------------------------------------- /client/dist/src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/dist/src/types.d.ts -------------------------------------------------------------------------------- /client/dist/test/index.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/package.json -------------------------------------------------------------------------------- /client/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/src/index.ts -------------------------------------------------------------------------------- /client/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/src/types.ts -------------------------------------------------------------------------------- /client/test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/test/index.test.ts -------------------------------------------------------------------------------- /client/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/tsconfig.json -------------------------------------------------------------------------------- /client/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/tslint.json -------------------------------------------------------------------------------- /client/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/client/webpack.config.js -------------------------------------------------------------------------------- /doc/how-it-works.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/doc/how-it-works.drawio -------------------------------------------------------------------------------- /doc/how-it-works.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/doc/how-it-works.png -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/example/package.json -------------------------------------------------------------------------------- /example/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/example/public/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/package.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/package.json -------------------------------------------------------------------------------- /server/src/connection.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/src/connection.ts -------------------------------------------------------------------------------- /server/src/ffmpeg.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/src/ffmpeg.ts -------------------------------------------------------------------------------- /server/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/src/index.ts -------------------------------------------------------------------------------- /server/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/src/types.ts -------------------------------------------------------------------------------- /server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/tsconfig.json -------------------------------------------------------------------------------- /server/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-browser-to-rtmp/HEAD/server/tslint.json --------------------------------------------------------------------------------