Files
JS-VMAF/.vscode/launch.json
T
Michael Fabian 'Xaymar' Dirks cdb4fc34ff 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.
2022-12-27 16:08:04 +01:00

18 lines
544 B
JSON

{
// 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"
}
]
}