diff options
author | Sergey M․ <dstftw@gmail.com> | 2020-11-18 04:09:02 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2020-11-18 04:09:02 +0700 |
commit | 2d7a29081c7419e4148cd0829b4f68a608c78496 (patch) | |
tree | a88e54a9d6a03394d54602d8da8f44f1a6283e49 /youtube_dl/extractor/spiegeltv.py | |
parent | 2864179293ba16189544b28356647886960a48fe (diff) |
[spiegel] Fix extraction (closes #24206, closes #24767)
Code picked from PR #24767 since original repo is not available due to takedown.
Diffstat (limited to 'youtube_dl/extractor/spiegeltv.py')
-rw-r--r-- | youtube_dl/extractor/spiegeltv.py | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/youtube_dl/extractor/spiegeltv.py b/youtube_dl/extractor/spiegeltv.py deleted file mode 100644 index 6ccf4c342..000000000 --- a/youtube_dl/extractor/spiegeltv.py +++ /dev/null @@ -1,17 +0,0 @@ -from __future__ import unicode_literals - -from .common import InfoExtractor -from .nexx import NexxIE - - -class SpiegeltvIE(InfoExtractor): - _VALID_URL = r'https?://(?:www\.)?spiegel\.tv/videos/(?P<id>\d+)' - _TEST = { - 'url': 'http://www.spiegel.tv/videos/161681-flug-mh370/', - 'only_matching': True, - } - - def _real_extract(self, url): - return self.url_result( - 'https://api.nexx.cloud/v3/748/videos/byid/%s' - % self._match_id(url), ie=NexxIE.ie_key()) |