aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/footyroom.py
diff options
context:
space:
mode:
authorsnipem <mail@matthias-kuech.de>2015-04-12 11:23:01 +0200
committerSergey M․ <dstftw@gmail.com>2015-04-12 17:01:03 +0600
commit7d2ba6394c489879578e316e533eeb282942e54b (patch)
tree1e1be1c9739cacb247fb136b09e18db6ea8bbc92 /youtube_dl/extractor/footyroom.py
parentb04b94da5fbe944e2a9d2946ab8b3acb212f9f70 (diff)
downloadyoutube-dl-7d2ba6394c489879578e316e533eeb282942e54b.zip
youtube-dl-7d2ba6394c489879578e316e533eeb282942e54b.tar.gz
youtube-dl-7d2ba6394c489879578e316e533eeb282942e54b.tar.bz2
[FootyRoom] Fixed missing http prefix
For some reason FootyTube is missing the „http:“ prefix on some Playwire links for some videos
Diffstat (limited to 'youtube_dl/extractor/footyroom.py')
-rw-r--r--youtube_dl/extractor/footyroom.py17
1 files changed, 15 insertions, 2 deletions
diff --git a/youtube_dl/extractor/footyroom.py b/youtube_dl/extractor/footyroom.py
index 2b4691a..dc784db 100644
--- a/youtube_dl/extractor/footyroom.py
+++ b/youtube_dl/extractor/footyroom.py
@@ -6,14 +6,25 @@ from .common import InfoExtractor
class FootyRoomIE(InfoExtractor):
_VALID_URL = r'http://footyroom\.com/(?P<id>[^/]+)'
- _TEST = {
+ _TESTS = [{
'url': 'http://footyroom.com/schalke-04-0-2-real-madrid-2015-02/',
+ 'md5': 'f38d400d32f19724570040d5ce3a505f',
'info_dict': {
'id': 'schalke-04-0-2-real-madrid-2015-02',
'title': 'Schalke 04 0 – 2 Real Madrid',
},
'playlist_count': 3,
- }
+ },
+ {
+ '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,
+ },
+
+ ]
def _real_extract(self, url):
playlist_id = self._match_id(url)
@@ -35,6 +46,8 @@ class FootyRoomIE(InfoExtractor):
playwire_url = self._search_regex(
r'data-config="([^"]+)"', payload,
'playwire url', default=None)
+ if not playwire_url.startswith("http:"):
+ playwire_url = "http:" + playwire_url
if playwire_url:
entries.append(self.url_result(playwire_url, 'Playwire'))