├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── conf └── janus.plugin.ndi.jcfg.sample ├── demo ├── css │ └── demo.css ├── favicon.ico ├── janus.js ├── ndi.html ├── ndi.js ├── settings.js └── up_arrow.png ├── docs └── API.md ├── janode ├── README.md ├── eslint.config.js ├── package.json └── src │ └── ndi.js └── src ├── janus_ndi.c └── pattern.h /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | 3 | node_modules 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/README.md -------------------------------------------------------------------------------- /conf/janus.plugin.ndi.jcfg.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/conf/janus.plugin.ndi.jcfg.sample -------------------------------------------------------------------------------- /demo/css/demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/css/demo.css -------------------------------------------------------------------------------- /demo/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/favicon.ico -------------------------------------------------------------------------------- /demo/janus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/janus.js -------------------------------------------------------------------------------- /demo/ndi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/ndi.html -------------------------------------------------------------------------------- /demo/ndi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/ndi.js -------------------------------------------------------------------------------- /demo/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/settings.js -------------------------------------------------------------------------------- /demo/up_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/demo/up_arrow.png -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/docs/API.md -------------------------------------------------------------------------------- /janode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/janode/README.md -------------------------------------------------------------------------------- /janode/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/janode/eslint.config.js -------------------------------------------------------------------------------- /janode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/janode/package.json -------------------------------------------------------------------------------- /janode/src/ndi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/janode/src/ndi.js -------------------------------------------------------------------------------- /src/janus_ndi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/src/janus_ndi.c -------------------------------------------------------------------------------- /src/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meetecho/janus-ndi/HEAD/src/pattern.h --------------------------------------------------------------------------------