aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/YoutubeDL.py
diff options
context:
space:
mode:
authorRemita Amine <remitamine@gmail.com>2016-10-19 16:22:40 +0100
committerSergey M <dstftw@gmail.com>2016-11-02 01:54:45 +0700
commitb2758123c5e759fdb0c7d23d380e4dd9e245cd4a (patch)
tree398d81f35d700c375ae50db5eb634c0b58c22120 /youtube_dl/YoutubeDL.py
parentf449c061d04b37f70dafa8c01a2e1fb7a47a9a5f (diff)
downloadyoutube-dl-b2758123c5e759fdb0c7d23d380e4dd9e245cd4a.tar.xz
add Basic support for Smooth Streaming protocol(#8118)
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index 99825e343..53f20ac2c 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1658,7 +1658,7 @@ class YoutubeDL(object):
video_ext, audio_ext = audio.get('ext'), video.get('ext')
if video_ext and audio_ext:
COMPATIBLE_EXTS = (
- ('mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v'),
+ ('mp3', 'mp4', 'm4a', 'm4p', 'm4b', 'm4r', 'm4v', 'ismv', 'isma'),
('webm')
)
for exts in COMPATIBLE_EXTS: