mirror of
https://github.com/l1ving/youtube-dl
synced 2025-03-11 01:27:18 +08:00
Fix typo
This commit is contained in:
parent
9b3036bd2e
commit
10285588ef
@ -1853,7 +1853,7 @@ class YoutubeDL(object):
|
|||||||
def compatible_formats(formats):
|
def compatible_formats(formats):
|
||||||
video, audio = formats
|
video, audio = formats
|
||||||
# Check extension
|
# Check extension
|
||||||
video_ext, audio_ext = audio.get('ext'), video.get('ext')
|
video_ext, audio_ext = video.get('ext'), audio.get('ext')
|
||||||
if video_ext and audio_ext:
|
if video_ext and audio_ext:
|
||||||
COMPATIBLE_EXTS = (
|
COMPATIBLE_EXTS = (
|
||||||
('mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'ismv', 'isma'),
|
('mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'ismv', 'isma'),
|
||||||
|
Loading…
x
Reference in New Issue
Block a user