mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-10 19:37:25 +00:00
[adultswim] Skip georestricted hls (Closes #8168)
This commit is contained in:
parent
97afd99a18
commit
18e6c97c48
@ -187,7 +187,8 @@ class AdultSwimIE(InfoExtractor):
|
|||||||
media_url = file_el.text
|
media_url = file_el.text
|
||||||
if determine_ext(media_url) == 'm3u8':
|
if determine_ext(media_url) == 'm3u8':
|
||||||
formats.extend(self._extract_m3u8_formats(
|
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:
|
else:
|
||||||
formats.append({
|
formats.append({
|
||||||
'format_id': '%s_%s' % (bitrate, ftype),
|
'format_id': '%s_%s' % (bitrate, ftype),
|
||||||
|
Loading…
Reference in New Issue
Block a user