aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2020-01-15 04:32:05 +0700
committerSergey M․ <dstftw@gmail.com>2020-01-15 04:32:05 +0700
commit90ea83c64d904587992105fb4506e80f6abb28b5 (patch)
tree0edded5c9f1a96e931362ed73da837340d9e6029
parente4e5fa6e3c1c2ca2d48dfb5a8b1f734bd627b2dc (diff)
downloadyoutube-dl-90ea83c64d904587992105fb4506e80f6abb28b5.tar.xz
[orf:tvthek] Improve geo restricted videos detection (closes #23741)
-rw-r--r--youtube_dl/extractor/orf.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/youtube_dl/extractor/orf.py b/youtube_dl/extractor/orf.py
index 45fc745a3..d54b8ace6 100644
--- a/youtube_dl/extractor/orf.py
+++ b/youtube_dl/extractor/orf.py
@@ -90,8 +90,11 @@ class ORFTVthekIE(InfoExtractor):
format_id = '-'.join(format_id_list)
ext = determine_ext(src)
if ext == 'm3u8':
- formats.extend(self._extract_m3u8_formats(
- src, video_id, 'mp4', m3u8_id=format_id, fatal=False))
+ m3u8_formats = self._extract_m3u8_formats(
+ src, video_id, 'mp4', m3u8_id=format_id, fatal=False)
+ if any('/geoprotection' in f['url'] for f in m3u8_formats):
+ self.raise_geo_restricted()
+ formats.extend(m3u8_formats)
elif ext == 'f4m':
formats.extend(self._extract_f4m_formats(
src, video_id, f4m_id=format_id, fatal=False))