From 3b9d94b7798beaf09e5d7f7c979b0405e000762d Mon Sep 17 00:00:00 2001 From: Somdev Sangwan Date: Fri, 2 Jun 2023 15:03:25 +0530 Subject: [PATCH] better cli path handling --- run.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/run.py b/run.py index 6428ee8..2099fdc 100755 --- a/run.py +++ b/run.py @@ -201,9 +201,7 @@ def start(): quit() video_name_full = target_path.split("/")[-1] video_name = os.path.splitext(video_name_full)[0] - output_dir = os.path.dirname(target_path) + "/" + video_name - if output_dir.startswith("/"): - output_dir = "." + output_dir + output_dir = os.path.dirname(target_path) + "/" + video_name if os.path.dirname(target_path) else video_name Path(output_dir).mkdir(exist_ok=True) status("detecting video's FPS...") fps, exact_fps = detect_fps(target_path)