From f570fb57b9bec1b9c181b4d7386e61169e3d29d1 Mon Sep 17 00:00:00 2001 From: tcely Date: Thu, 5 Dec 2024 07:57:24 -0500 Subject: [PATCH] Adjust to correct 60 fps case --- tubesync/sync/matching.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tubesync/sync/matching.py b/tubesync/sync/matching.py index c453ff96..93fcdae3 100644 --- a/tubesync/sync/matching.py +++ b/tubesync/sync/matching.py @@ -331,7 +331,7 @@ def get_best_video_format(media): for fmt in video_formats: # Check for a codec, hdr and fps match but drop the resolution if (source_vcodec == fmt['vcodec'] and - not fmt['is_hdr'] and fmt['is_60fps']): + not fmt['is_hdr'] and not fmt['is_60fps']): # Close match exact_match, best_match = False, fmt break