├── .gitattributes ├── .github ├── FUNDING.yml ├── renovate.json └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── browser ├── index.js └── jsmpeg.d.ts ├── examples ├── angular.md ├── react.md ├── svelte.md └── vue.md ├── index.js ├── package.json ├── test ├── __image_snapshots__ │ ├── e-2-e-test-js-end-to-end-tests-proxys-sync-test-1-2-simulatenously-using-the-new-browser-api-1-snap.png │ ├── e-2-e-test-js-end-to-end-tests-proxys-sync-test-1-and-renders-it-in-the-browser-1-snap.png │ ├── e-2-e-test-js-end-to-end-tests-proxys-sync-test-2-and-renders-it-in-the-browser-1-snap.png │ └── e-2-e-test-js-end-to-end-tests-works-from-react-1-snap.png ├── e2e.test.js ├── rtsp-simple-server ├── setupTests.js ├── static │ └── react.html ├── typescript.ts └── video │ ├── sync-test-1.ts.mp4 │ └── sync-test-2.ts.mp4 └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- 1 | *.wav binary 2 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | ko_fi: kylenz 2 | -------------------------------------------------------------------------------- /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/README.md -------------------------------------------------------------------------------- /browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/browser/index.js -------------------------------------------------------------------------------- /browser/jsmpeg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/browser/jsmpeg.d.ts -------------------------------------------------------------------------------- /examples/angular.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/examples/angular.md -------------------------------------------------------------------------------- /examples/react.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/examples/react.md -------------------------------------------------------------------------------- /examples/svelte.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/examples/svelte.md -------------------------------------------------------------------------------- /examples/vue.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/examples/vue.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/package.json -------------------------------------------------------------------------------- /test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-proxys-sync-test-1-2-simulatenously-using-the-new-browser-api-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-proxys-sync-test-1-2-simulatenously-using-the-new-browser-api-1-snap.png -------------------------------------------------------------------------------- /test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-proxys-sync-test-1-and-renders-it-in-the-browser-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-proxys-sync-test-1-and-renders-it-in-the-browser-1-snap.png -------------------------------------------------------------------------------- /test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-proxys-sync-test-2-and-renders-it-in-the-browser-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-proxys-sync-test-2-and-renders-it-in-the-browser-1-snap.png -------------------------------------------------------------------------------- /test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-works-from-react-1-snap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/__image_snapshots__/e-2-e-test-js-end-to-end-tests-works-from-react-1-snap.png -------------------------------------------------------------------------------- /test/e2e.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/e2e.test.js -------------------------------------------------------------------------------- /test/rtsp-simple-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/rtsp-simple-server -------------------------------------------------------------------------------- /test/setupTests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/setupTests.js -------------------------------------------------------------------------------- /test/static/react.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/static/react.html -------------------------------------------------------------------------------- /test/typescript.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/typescript.ts -------------------------------------------------------------------------------- /test/video/sync-test-1.ts.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/video/sync-test-1.ts.mp4 -------------------------------------------------------------------------------- /test/video/sync-test-2.ts.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/test/video/sync-test-2.ts.mp4 -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-yle/rtsp-relay/HEAD/tsconfig.json --------------------------------------------------------------------------------