aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vgtv.py
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2015-05-08 22:59:50 +0600
committerSergey M․ <dstftw@gmail.com>2015-05-08 22:59:50 +0600
commitfe373287ebdda002ed84dca1d8b9d6f8a5686138 (patch)
tree73c2c5456372a87e06fc9ea52d75a141011869d4 /youtube_dl/extractor/vgtv.py
parentcbe443362f91ab111e2a01fe8246e17a98668f88 (diff)
downloadyoutube-dl-fe373287ebdda002ed84dca1d8b9d6f8a5686138.tar.xz
[vgtv] Add support for bt vestlendingen (Closes #5620)
Diffstat (limited to 'youtube_dl/extractor/vgtv.py')
-rw-r--r--youtube_dl/extractor/vgtv.py26
1 files changed, 25 insertions, 1 deletions
diff --git a/youtube_dl/extractor/vgtv.py b/youtube_dl/extractor/vgtv.py
index ad07e54c9..db7a4bdb1 100644
--- a/youtube_dl/extractor/vgtv.py
+++ b/youtube_dl/extractor/vgtv.py
@@ -143,7 +143,8 @@ class VGTVIE(InfoExtractor):
class BTArticleIE(InfoExtractor):
- IE_DESC = 'Bergens Tidende'
+ IE_NAME = 'bt:article'
+ IE_DESC = 'Bergens Tidende Articles'
_VALID_URL = 'http://(?:www\.)?bt\.no/(?:[^/]+/)+(?P<id>[^/]+)-\d+\.html'
_TEST = {
'url': 'http://www.bt.no/nyheter/lokalt/Kjemper-for-internatet-1788214.html',
@@ -166,3 +167,26 @@ class BTArticleIE(InfoExtractor):
video_id = self._search_regex(
r'SVP\.Player\.load\(\s*(\d+)', webpage, 'video id')
return self.url_result('vgtv:bt:%s' % video_id, 'VGTV')
+
+
+class BTVestlendingenIE(InfoExtractor):
+ IE_NAME = 'bt:vestlendingen'
+ IE_DESC = 'Bergens Tidende - Vestlendingen'
+ _VALID_URL = 'http://(?:www\.)?bt\.no/spesial/vestlendingen/#!/(?P<id>\d+)'
+ _TEST = {
+ 'url': 'http://www.bt.no/spesial/vestlendingen/#!/86588',
+ 'md5': 'd7d17e3337dc80de6d3a540aefbe441b',
+ 'info_dict': {
+ 'id': '86588',
+ 'ext': 'mov',
+ 'title': 'Otto Wollertsen',
+ 'description': 'Vestlendingen Otto Fredrik Wollertsen',
+ 'timestamp': 1430473209,
+ 'upload_date': '20150501',
+ },
+ }
+
+ def _real_extract(self, url):
+ return self.url_result('xstream:btno:%s' % self._match_id(url), 'Xstream')
+
+