diff --git a/main.py b/main.py index 69e3c04..aba1ee3 100644 --- a/main.py +++ b/main.py @@ -1,6 +1,6 @@ import logging from pathlib import Path -from src.runner import runner +from src.runner import run from src.config import presets @@ -30,7 +30,7 @@ def main(): default="global", ) args = parser.parse_args() - runner( + run( base_path=Path(args.base_path), video_path=Path(args.video_path), output_video=args.output, diff --git a/src/runner.py b/src/runner.py index 98dc63a..7ff8676 100644 --- a/src/runner.py +++ b/src/runner.py @@ -182,7 +182,7 @@ class InterpolationPipeline: yield interpolated[i] -def runner( +def run( base_path: Path, video_path: Path, output_video: str,