├── .babelrc ├── .eslintrc ├── .gitignore ├── Dockerfile ├── README.md ├── SECURITY.md ├── create-hls-vod.sh ├── curl_transcoding_finished.sh ├── package.json ├── server ├── constants.js ├── db │ └── index.js ├── loader.js ├── routes │ └── index.js └── server.js └── tests ├── index.js └── unit-tests └── index.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/env" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/SECURITY.md -------------------------------------------------------------------------------- /create-hls-vod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/create-hls-vod.sh -------------------------------------------------------------------------------- /curl_transcoding_finished.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/curl_transcoding_finished.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/package.json -------------------------------------------------------------------------------- /server/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/server/constants.js -------------------------------------------------------------------------------- /server/db/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/server/db/index.js -------------------------------------------------------------------------------- /server/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/server/loader.js -------------------------------------------------------------------------------- /server/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/server/routes/index.js -------------------------------------------------------------------------------- /server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/server/server.js -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/tests/index.js -------------------------------------------------------------------------------- /tests/unit-tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theserverfault/HLS-transcoding-nodejs/HEAD/tests/unit-tests/index.js --------------------------------------------------------------------------------