aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/aftenposten.py
diff options
context:
space:
mode:
authorremitamine <remitamine@gmail.com>2015-10-30 09:48:56 +0100
committerremitamine <remitamine@gmail.com>2015-10-30 09:48:56 +0100
commit00d24327efcac74b11dbc4d813aed74da9a501e0 (patch)
tree9f7cb471c540dde44de6df2d222fe094ef0bc03d /youtube_dl/extractor/aftenposten.py
parent721f5a277ca0012ee72c9d4b3e5550e52a0a596d (diff)
downloadyoutube-dl-00d24327efcac74b11dbc4d813aed74da9a501e0.tar.xz
[vgtv] extract videos from FTV, Aftenposten, Aftonbladet using VGTVIE
Diffstat (limited to 'youtube_dl/extractor/aftenposten.py')
-rw-r--r--youtube_dl/extractor/aftenposten.py23
1 files changed, 0 insertions, 23 deletions
diff --git a/youtube_dl/extractor/aftenposten.py b/youtube_dl/extractor/aftenposten.py
deleted file mode 100644
index 0c00acfb5..000000000
--- a/youtube_dl/extractor/aftenposten.py
+++ /dev/null
@@ -1,23 +0,0 @@
-# coding: utf-8
-from __future__ import unicode_literals
-
-from .common import InfoExtractor
-
-
-class AftenpostenIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?aftenposten\.no/webtv/(?:#!/)?video/(?P<id>\d+)'
- _TEST = {
- 'url': 'http://www.aftenposten.no/webtv/#!/video/21039/trailer-sweatshop-i-can-t-take-any-more',
- 'md5': 'fd828cd29774a729bf4d4425fe192972',
- 'info_dict': {
- 'id': '21039',
- 'ext': 'mov',
- 'title': 'TRAILER: "Sweatshop" - I canĀ“t take any more',
- 'description': 'md5:21891f2b0dd7ec2f78d84a50e54f8238',
- 'timestamp': 1416927969,
- 'upload_date': '20141125',
- }
- }
-
- def _real_extract(self, url):
- return self.url_result('xstream:ap:%s' % self._match_id(url), 'Xstream')