This commit is contained in:
Jesús 2020-12-21 21:46:39 -05:00
parent 90f8317b36
commit 58c0ffc38d
No known key found for this signature in database
GPG Key ID: F6EE7BC59A315766

View File

@ -308,7 +308,7 @@ def extract_info(video_id, use_invidious, playlist_id=None, index=None):
def video_quality_string(format):
if format['vcodec']:
result =str(format['width'] or '?') + 'x' + str(format['height'] or '?')
result = str(format['width'] or '?') + 'x' + str(format['height'] or '?')
if format['fps']:
result += ' ' + str(format['fps']) + 'fps'
return result