aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/ebaumsworld.py
diff options
context:
space:
mode:
authorUnknown <blackjack4494@web.de>2020-09-03 04:06:30 +0200
committerUnknown <blackjack4494@web.de>2020-09-03 04:06:30 +0200
commit53d26f24069590f47985dfd1eb3f4c90642e676a (patch)
tree7768d8013f0e0c4a304a8284b3a4a6ede721bd58 /youtube_dl/extractor/ebaumsworld.py
parente367127957d37b51720ebc6f8cea5430ef67e863 (diff)
[skip travis] revert automerge for now
Diffstat (limited to 'youtube_dl/extractor/ebaumsworld.py')
-rw-r--r--youtube_dl/extractor/ebaumsworld.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/youtube_dl/extractor/ebaumsworld.py b/youtube_dl/extractor/ebaumsworld.py
deleted file mode 100644
index c97682cd3..000000000
--- a/youtube_dl/extractor/ebaumsworld.py
+++ /dev/null
@@ -1,33 +0,0 @@
-from __future__ import unicode_literals
-
-from .common import InfoExtractor
-
-
-class EbaumsWorldIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?ebaumsworld\.com/videos/[^/]+/(?P<id>\d+)'
-
- _TEST = {
- 'url': 'http://www.ebaumsworld.com/videos/a-giant-python-opens-the-door/83367677/',
- 'info_dict': {
- 'id': '83367677',
- 'ext': 'mp4',
- 'title': 'A Giant Python Opens The Door',
- 'description': 'This is how nightmares start...',
- 'uploader': 'jihadpizza',
- },
- }
-
- def _real_extract(self, url):
- video_id = self._match_id(url)
- config = self._download_xml(
- 'http://www.ebaumsworld.com/video/player/%s' % video_id, video_id)
- video_url = config.find('file').text
-
- return {
- 'id': video_id,
- 'title': config.find('title').text,
- 'url': video_url,
- 'description': config.find('description').text,
- 'thumbnail': config.find('image').text,
- 'uploader': config.find('username').text,
- }