mirror of
https://github.com/meeb/tubesync.git
synced 2025-06-23 13:36:35 +00:00
Fix typo
This commit is contained in:
parent
cc842c4a4d
commit
f316c3e81a
@ -236,7 +236,7 @@ def get_best_video_format(media):
|
|||||||
break
|
break
|
||||||
if not best_match:
|
if not best_match:
|
||||||
for fmt in video_formats:
|
for fmt in video_formats:
|
||||||
# Check for codec and resolution match bot drop 60fps
|
# Check for codec and resolution match but drop 60fps
|
||||||
if (source_resolution == fmt['format'] and
|
if (source_resolution == fmt['format'] and
|
||||||
source_vcodec == fmt['vcodec'] and
|
source_vcodec == fmt['vcodec'] and
|
||||||
not fmt['is_hdr']):
|
not fmt['is_hdr']):
|
||||||
@ -294,7 +294,7 @@ def get_best_video_format(media):
|
|||||||
break
|
break
|
||||||
if not best_match:
|
if not best_match:
|
||||||
for fmt in video_formats:
|
for fmt in video_formats:
|
||||||
# Check for codec and resolution match bot drop hdr
|
# Check for codec and resolution match but drop hdr
|
||||||
if (source_resolution == fmt['format'] and
|
if (source_resolution == fmt['format'] and
|
||||||
source_vcodec == fmt['vcodec'] and
|
source_vcodec == fmt['vcodec'] and
|
||||||
not fmt['is_60fps']):
|
not fmt['is_60fps']):
|
||||||
|
Loading…
Reference in New Issue
Block a user