mirror of
https://github.com/LucBerge/yt-dlp.git
synced 2025-03-17 19:57:52 +03:00
[cleanup] Misc
This commit is contained in:
parent
daef791100
commit
31b532a1f2
6 changed files with 20 additions and 20 deletions
|
@ -28,7 +28,7 @@ try:
|
|||
except ImportError:
|
||||
try:
|
||||
from Crypto.Cipher import AES as Cryptodome_AES
|
||||
except ImportError:
|
||||
except (ImportError, SyntaxError): # Old Crypto gives SyntaxError in newer Python
|
||||
Cryptodome_AES = None
|
||||
else:
|
||||
try:
|
||||
|
|
|
@ -76,7 +76,7 @@ class MindsIE(MindsBaseIE):
|
|||
else:
|
||||
return self.url_result(entity['perma_url'])
|
||||
else:
|
||||
assert(entity['subtype'] == 'video')
|
||||
assert entity['subtype'] == 'video'
|
||||
video_id = entity_id
|
||||
# 1080p and webm formats available only on the sources array
|
||||
video = self._call_api(
|
||||
|
|
|
@ -3562,8 +3562,7 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
|
|||
|
||||
formats.extend(self._extract_storyboard(player_responses, duration))
|
||||
|
||||
# Source is given priority since formats that throttle are given lower source_preference
|
||||
# When throttling issue is fully fixed, remove this
|
||||
# source_preference is lower for throttled/potentially damaged formats
|
||||
self._sort_formats(formats, ('quality', 'res', 'fps', 'hdr:12', 'source', 'codec:vp9.2', 'lang', 'proto'))
|
||||
|
||||
info = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue