fix for windows ffprobe not working
This commit is contained in:
19
fsrimagevideoupscaler-cli.py
Normal file
19
fsrimagevideoupscaler-cli.py
Normal 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', )
|
||||
Reference in New Issue
Block a user