├── .github └── workflows │ ├── create-documentation-pr.yml │ ├── create-release-from-changelog.yml │ ├── release.yml │ └── test.yml ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── examples ├── index.html └── merge-webcam-and-screen-in-one-stream.html ├── package.json ├── src └── index.ts ├── test └── index.test.ts ├── tsconfig.json ├── tslint.json └── webpack.config.js /.github/workflows/create-documentation-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/.github/workflows/create-documentation-pr.yml -------------------------------------------------------------------------------- /.github/workflows/create-release-from-changelog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/.github/workflows/create-release-from-changelog.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/README.md -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/examples/index.html -------------------------------------------------------------------------------- /examples/merge-webcam-and-screen-in-one-stream.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/examples/merge-webcam-and-screen-in-one-stream.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/test/index.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/tslint.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apivideo/api.video-typescript-media-recorder/HEAD/webpack.config.js --------------------------------------------------------------------------------