df385e338f6f7a9cfcb4541f6c088b5e266f091f
[youtube-dl] / youtube_dl / extractor / gamekings.py
1 # coding: utf-8
2 from __future__ import unicode_literals
3
4 from .common import InfoExtractor
5 from ..utils import (
6     xpath_text,
7     xpath_with_ns,
8 )
9
10
11 class GamekingsIE(InfoExtractor):
12     _VALID_URL = r'http://www\.gamekings\.nl/(?:videos|nieuws)/(?P<id>[^/]+)'
13     _TESTS = [{
14         # YouTube embed video
15         'url': 'http://www.gamekings.nl/videos/phoenix-wright-ace-attorney-dual-destinies-review/',
16         'md5': '5208d3a17adeaef829a7861887cb9029',
17         'info_dict': {
18             'id': 'HkSQKetlGOU',
19             'ext': 'mp4',
20             'title': 'Phoenix Wright: Ace Attorney - Dual Destinies Review',
21             'description': 'md5:db88c0e7f47e9ea50df3271b9dc72e1d',
22             'thumbnail': 're:^https?://.*\.jpg$',
23             'uploader_id': 'UCJugRGo4STYMeFr5RoOShtQ',
24             'uploader': 'Gamekings Vault',
25             'upload_date': '20151123',
26         },
27         'add_ie': ['Youtube'],
28     }, {
29         # vimeo video
30         'url': 'http://www.gamekings.nl/videos/the-legend-of-zelda-majoras-mask/',
31         'md5': '12bf04dfd238e70058046937657ea68d',
32         'info_dict': {
33             'id': 'the-legend-of-zelda-majoras-mask',
34             'ext': 'mp4',
35             'title': 'The Legend of Zelda: Majora’s Mask',
36             'description': 'md5:9917825fe0e9f4057601fe1e38860de3',
37             'thumbnail': 're:^https?://.*\.jpg$',
38         },
39     }, {
40         'url': 'http://www.gamekings.nl/nieuws/gamekings-extra-shelly-en-david-bereiden-zich-voor-op-de-livestream/',
41         'only_matching': True,
42     }]
43
44     def _real_extract(self, url):
45         video_id = self._match_id(url)
46
47         webpage = self._download_webpage(url, video_id)
48
49         playlist_id = self._search_regex(
50             r'gogoVideo\(.*,\s*"([^"]+)', webpage, 'playlist id')
51
52         # Check if a YouTube embed is used
53         if playlist_id.find('youtube') != -1:
54             return self.url_result(playlist_id, ie='Youtube')
55
56         playlist = self._download_xml(
57             'http://www.gamekings.tv/wp-content/themes/gk2010/rss_playlist.php?id=%s' % playlist_id,
58             video_id)
59
60         NS_MAP = {
61             'jwplayer': 'http://rss.jwpcdn.com/'
62         }
63
64         item = playlist.find('./channel/item')
65
66         thumbnail = xpath_text(item, xpath_with_ns('./jwplayer:image', NS_MAP), 'thumbnail')
67         video_url = item.find(xpath_with_ns('./jwplayer:source', NS_MAP)).get('file')
68
69         return {
70             'id': video_id,
71             'url': video_url,
72             'title': self._og_search_title(webpage),
73             'description': self._og_search_description(webpage),
74             'thumbnail': thumbnail,
75         }