about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-01-08 03:19:47 +0600
committerSergey M․ <dstftw@gmail.com>2016-01-08 03:19:47 +0600
commit18e6c97c48f883911649d9b3d64127379a8b1df4 (patch)
tree548c1e9693978226de9b31b05af2e7ca83866aa7
parent97afd99a18e4723e4ff588df456c7aec62967b35 (diff)
downloadyoutube-dl-18e6c97c48f883911649d9b3d64127379a8b1df4.tar.gz
youtube-dl-18e6c97c48f883911649d9b3d64127379a8b1df4.tar.xz
youtube-dl-18e6c97c48f883911649d9b3d64127379a8b1df4.zip
[adultswim] Skip georestricted hls (Closes #8168)
-rw-r--r--youtube_dl/extractor/adultswim.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/youtube_dl/extractor/adultswim.py b/youtube_dl/extractor/adultswim.py
index bf21a6887..8157da2cb 100644
--- a/youtube_dl/extractor/adultswim.py
+++ b/youtube_dl/extractor/adultswim.py
@@ -187,7 +187,8 @@ class AdultSwimIE(InfoExtractor):
                 media_url = file_el.text
                 if determine_ext(media_url) == 'm3u8':
                     formats.extend(self._extract_m3u8_formats(
-                        media_url, segment_title, 'mp4', preference=0, m3u8_id='hls'))
+                        media_url, segment_title, 'mp4', preference=0,
+                        m3u8_id='hls', fatal=False))
                 else:
                     formats.append({
                         'format_id': '%s_%s' % (bitrate, ftype),