├── .gitignore ├── LICENSE ├── README.md ├── bin.sh ├── hls.min.js ├── index.html ├── index.m3u8 └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.ts 3 | .dat 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/record-screen/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/record-screen/HEAD/README.md -------------------------------------------------------------------------------- /bin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/record-screen/HEAD/bin.sh -------------------------------------------------------------------------------- /hls.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/record-screen/HEAD/hls.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/record-screen/HEAD/index.html -------------------------------------------------------------------------------- /index.m3u8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/record-screen/HEAD/package.json --------------------------------------------------------------------------------