mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 20:17:22 +01:00
[vrt] Detect geo restriction
This commit is contained in:
parent
80e59a0d5d
commit
63bf4f0dc0
@ -79,6 +79,10 @@ def _real_extract(self, url):
|
||||
formats.extend(self._extract_f4m_formats(
|
||||
'%s/manifest.f4m' % mobj.group('src'),
|
||||
video_id, f4m_id='hds', fatal=False))
|
||||
|
||||
if not formats and 'data-video-geoblocking="true"' in webpage:
|
||||
self.raise_geo_restricted('This video is only available in Belgium')
|
||||
|
||||
self._sort_formats(formats)
|
||||
|
||||
title = self._og_search_title(webpage)
|
||||
|
Loading…
Reference in New Issue
Block a user