v1.0.0: Minimum Viable Product

- Supports scaling, color conversion, format conversion, framerate conversion.
- Any number of distorted files compared to reference file.
- Custom resolution, framerate, format, etc.
- Multiple models and features supported.
This commit is contained in:
Michael Fabian 'Xaymar' Dirks
2022-12-26 20:26:54 +01:00
parent 7993677abc
commit cdb4fc34ff
6 changed files with 558 additions and 10 deletions
+18
View File
@@ -0,0 +1,18 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}",
"preLaunchTask": "tsc: build"
}
]
}
+42
View File
@@ -0,0 +1,42 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "install",
"group": "build",
"problemMatcher": [],
"label": "npm: install",
"detail": "Install dependencies via NPM"
},
{
"type": "npm",
"script": "clean-install",
"group": "build",
"problemMatcher": [],
"label": "npm: clean-install",
"detail": "Install dependencies via NPM cleanly"
},
{
"type": "npm",
"script": "fix",
"group": "build",
"problemMatcher": [],
"label": "eslint: fix",
"detail": "Let ESLint fix things."
},
{
"type": "npm",
"script": "build",
"problemMatcher": [
"$eslint-stylish",
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
},
"label": "tsc: build"
}
]
}