mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 21:46:44 +00:00
Merge pull request #569 from tcely/patch-2
Adjust to correct 60 fps case
This commit is contained in:
commit
e230b7ce36
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user