aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/metacritic.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/metacritic.py
parente367127957d37b51720ebc6f8cea5430ef67e863 (diff)
downloadhypervideo-pre-53d26f24069590f47985dfd1eb3f4c90642e676a.tar.lz
hypervideo-pre-53d26f24069590f47985dfd1eb3f4c90642e676a.tar.xz
hypervideo-pre-53d26f24069590f47985dfd1eb3f4c90642e676a.zip
[skip travis] revert automerge for now
Diffstat (limited to 'youtube_dl/extractor/metacritic.py')
-rw-r--r--youtube_dl/extractor/metacritic.py65
1 files changed, 0 insertions, 65 deletions
diff --git a/youtube_dl/extractor/metacritic.py b/youtube_dl/extractor/metacritic.py
deleted file mode 100644
index 7d468d78b..000000000
--- a/youtube_dl/extractor/metacritic.py
+++ /dev/null
@@ -1,65 +0,0 @@
-from __future__ import unicode_literals
-
-import re
-
-from .common import InfoExtractor
-from ..utils import (
- fix_xml_ampersands,
-)
-
-
-class MetacriticIE(InfoExtractor):
- _VALID_URL = r'https?://(?:www\.)?metacritic\.com/.+?/trailers/(?P<id>\d+)'
-
- _TESTS = [{
- 'url': 'http://www.metacritic.com/game/playstation-4/infamous-second-son/trailers/3698222',
- 'info_dict': {
- 'id': '3698222',
- 'ext': 'mp4',
- 'title': 'inFamous: Second Son - inSide Sucker Punch: Smoke & Mirrors',
- 'description': 'Take a peak behind-the-scenes to see how Sucker Punch brings smoke into the universe of inFAMOUS Second Son on the PS4.',
- 'duration': 221,
- },
- 'skip': 'Not providing trailers anymore',
- }, {
- 'url': 'http://www.metacritic.com/game/playstation-4/tales-from-the-borderlands-a-telltale-game-series/trailers/5740315',
- 'info_dict': {
- 'id': '5740315',
- 'ext': 'mp4',
- 'title': 'Tales from the Borderlands - Finale: The Vault of the Traveler',
- 'description': 'In the final episode of the season, all hell breaks loose. Jack is now in control of Helios\' systems, and he\'s ready to reclaim his rightful place as king of Hyperion (with or without you).',
- 'duration': 114,
- },
- }]
-
- def _real_extract(self, url):
- mobj = re.match(self._VALID_URL, url)
- video_id = mobj.group('id')
- webpage = self._download_webpage(url, video_id)
- # The xml is not well formatted, there are raw '&'
- info = self._download_xml('http://www.metacritic.com/video_data?video=' + video_id,
- video_id, 'Downloading info xml', transform_source=fix_xml_ampersands)
-
- clip = next(c for c in info.findall('playList/clip') if c.find('id').text == video_id)
- formats = []
- for videoFile in clip.findall('httpURI/videoFile'):
- rate_str = videoFile.find('rate').text
- video_url = videoFile.find('filePath').text
- formats.append({
- 'url': video_url,
- 'ext': 'mp4',
- 'format_id': rate_str,
- 'tbr': int(rate_str),
- })
- self._sort_formats(formats)
-
- description = self._html_search_regex(r'<b>Description:</b>(.*?)</p>',
- webpage, 'description', flags=re.DOTALL)
-
- return {
- 'id': video_id,
- 'title': clip.find('title').text,
- 'formats': formats,
- 'description': description,
- 'duration': int(clip.find('duration').text),
- }