├── .DS_Store ├── .gitignore ├── .gitignore~ ├── README.md ├── node.js ├── package.json ├── path+videoJsonFile ├── public ├── .DS_Store ├── icon.ico ├── icon.png ├── kauke-fall-45.mp4 ├── kaukecrf28.mp4 └── style.css ├── sampleResponse.Json ├── src ├── .DS_Store └── index.js ├── tests ├── test_062645c9-f837-4e0d-a08c-a33281589af5.json ├── test_22d64b4f-9ddd-482b-80dd-989098ac0637.json ├── test_840a5a58-253b-464a-9484-d74674407a3c.json ├── test_ad4af485-67e2-4883-9331-69c31d073fa4.json └── test_c2932aad-a511-402e-a93f-01586579e5d1.json ├── views ├── .DS_Store ├── index.pug ├── landing.pug └── results.pug └── vmafscan ├── .DS_Store └── .gitignore /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitignore~: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/README.md -------------------------------------------------------------------------------- /node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/node.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/package.json -------------------------------------------------------------------------------- /path+videoJsonFile: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/public/icon.ico -------------------------------------------------------------------------------- /public/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/public/icon.png -------------------------------------------------------------------------------- /public/kauke-fall-45.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/public/kauke-fall-45.mp4 -------------------------------------------------------------------------------- /public/kaukecrf28.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/public/kaukecrf28.mp4 -------------------------------------------------------------------------------- /public/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/public/style.css -------------------------------------------------------------------------------- /sampleResponse.Json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/sampleResponse.Json -------------------------------------------------------------------------------- /src/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/src/.DS_Store -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/test_062645c9-f837-4e0d-a08c-a33281589af5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/tests/test_062645c9-f837-4e0d-a08c-a33281589af5.json -------------------------------------------------------------------------------- /tests/test_22d64b4f-9ddd-482b-80dd-989098ac0637.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_840a5a58-253b-464a-9484-d74674407a3c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/tests/test_840a5a58-253b-464a-9484-d74674407a3c.json -------------------------------------------------------------------------------- /tests/test_ad4af485-67e2-4883-9331-69c31d073fa4.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_c2932aad-a511-402e-a93f-01586579e5d1.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/views/.DS_Store -------------------------------------------------------------------------------- /views/index.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/views/index.pug -------------------------------------------------------------------------------- /views/landing.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/views/landing.pug -------------------------------------------------------------------------------- /views/results.pug: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/views/results.pug -------------------------------------------------------------------------------- /vmafscan/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dougsillars/StreamClarity/HEAD/vmafscan/.DS_Store -------------------------------------------------------------------------------- /vmafscan/.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | /node_modules 3 | --------------------------------------------------------------------------------