Files
SimpleMediaUpscalerLite/fsrimagevideoupscaler-cli.py
2023-03-15 11:56:07 +01:00

19 lines
497 B
Python

"""
* 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', )