2015-03-12 15:56:56 +00:00
|
|
|
|
# coding: utf-8
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
|
|
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class FootyRoomIE(InfoExtractor):
|
|
|
|
|
_VALID_URL = r'http://footyroom\.com/(?P<id>[^/]+)'
|
2015-04-12 09:23:01 +00:00
|
|
|
|
_TESTS = [{
|
2015-03-12 15:56:56 +00:00
|
|
|
|
'url': 'http://footyroom.com/schalke-04-0-2-real-madrid-2015-02/',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'schalke-04-0-2-real-madrid-2015-02',
|
|
|
|
|
'title': 'Schalke 04 0 – 2 Real Madrid',
|
|
|
|
|
},
|
|
|
|
|
'playlist_count': 3,
|
2015-04-12 11:11:11 +00:00
|
|
|
|
}, {
|
2015-04-12 09:23:01 +00:00
|
|
|
|
'url': 'http://footyroom.com/georgia-0-2-germany-2015-03/',
|
|
|
|
|
'info_dict': {
|
|
|
|
|
'id': 'georgia-0-2-germany-2015-03',
|
|
|
|
|
'title': 'Georgia 0 – 2 Germany',
|
|
|
|
|
},
|
|
|
|
|
'playlist_count': 1,
|
2015-04-12 11:11:11 +00:00
|
|
|
|
}]
|
2015-03-12 15:56:56 +00:00
|
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
playlist_id = self._match_id(url)
|
|
|
|
|
|
|
|
|
|
webpage = self._download_webpage(url, playlist_id)
|
|
|
|
|
|
|
|
|
|
playlist = self._parse_json(
|
|
|
|
|
self._search_regex(
|
|
|
|
|
r'VideoSelector\.load\((\[.+?\])\);', webpage, 'video selector'),
|
|
|
|
|
playlist_id)
|
|
|
|
|
|
|
|
|
|
playlist_title = self._og_search_title(webpage)
|
|
|
|
|
|
|
|
|
|
entries = []
|
|
|
|
|
for video in playlist:
|
|
|
|
|
payload = video.get('payload')
|
|
|
|
|
if not payload:
|
|
|
|
|
continue
|
|
|
|
|
playwire_url = self._search_regex(
|
|
|
|
|
r'data-config="([^"]+)"', payload,
|
|
|
|
|
'playwire url', default=None)
|
|
|
|
|
if playwire_url:
|
2015-04-12 11:09:52 +00:00
|
|
|
|
entries.append(self.url_result(self._proto_relative_url(
|
|
|
|
|
playwire_url, 'http:'), 'Playwire'))
|
2015-03-12 15:56:56 +00:00
|
|
|
|
|
|
|
|
|
return self.playlist_result(entries, playlist_id, playlist_title)
|