fix for windows ffprobe not working

This commit is contained in:
janis
2023-03-15 11:56:07 +01:00
parent e7ad56b62a
commit 945e3edfb0
15 changed files with 2683 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
"""
* FSRImageVideoUpscalerFrontend - fsrimagevideoupscaler-cli.py
*
* Created by Janis Hutz 03/15/2023, Licensed under the GPL V3 License
* https://janishutz.com, development@janishutz.com
*
*
"""
import argparse
import bin.handler
ap = argparse.ArgumentParser(description="FSRImageVideoUpscaler - CLI")
ap.add_argument("Input file", help="Path to txt file containing the testdata")
args = ap.parse_args()
handler = bin.handler.Handler()
handler.handler( 'bin/lib/FidelityFX_CLI.exe', )