youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 63bf4f0dc0502a87c19863c2509a4bc28c7c1abb
parent 80e59a0d5d397c46c73d52a4e2c1ec6af3b9b1e7
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 17 Feb 2016 23:28:41 +0600

[vrt] Detect geo restriction

Diffstat:
Myoutube_dl/extractor/vrt.py | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/youtube_dl/extractor/vrt.py b/youtube_dl/extractor/vrt.py @@ -79,6 +79,10 @@ class VRTIE(InfoExtractor): 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)