2015-04-03 13:34:49 +00:00
|
|
|
# coding: utf-8
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import re
|
|
|
|
import time
|
2015-04-04 10:42:14 +00:00
|
|
|
|
2015-04-03 13:34:49 +00:00
|
|
|
from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
class GamersydeIE(InfoExtractor):
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?gamersyde\.com/hqstream_'
|
2015-04-04 10:42:14 +00:00
|
|
|
_TESTS = [{
|
2015-04-03 13:34:49 +00:00
|
|
|
'url': 'http://www.gamersyde.com/hqstream_bloodborne_birth_of_a_hero-34371_en.html',
|
|
|
|
'md5': 'f38d400d32f19724570040d5ce3a505f',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '34371',
|
|
|
|
'ext': 'mp4',
|
2015-04-04 10:42:14 +00:00
|
|
|
'duration': 372,
|
2015-04-03 13:34:49 +00:00
|
|
|
'title': 'Bloodborne - Birth of a hero',
|
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
|
|
}
|
2015-04-04 10:42:14 +00:00
|
|
|
}, {
|
2015-04-04 10:31:48 +00:00
|
|
|
'url': 'http://www.gamersyde.com/hqstream_dark_souls_ii_scholar_of_the_first_sin_gameplay_part_1-34417_en.html',
|
2015-04-04 10:42:14 +00:00
|
|
|
'md5': '94bd7c3feff3275576cf5cb6c8a3a720',
|
|
|
|
'info_dict': {
|
|
|
|
'id': '34417',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'duration': 270,
|
|
|
|
'title': 'Dark Souls II: Scholar of the First Sin - Gameplay - Part 1',
|
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
'url': 'http://www.gamersyde.com/hqstream_grand_theft_auto_v_heists_trailer-33786_en.html',
|
|
|
|
'md5': '65e442f5f340d571ece8c80d50700369',
|
2015-04-04 10:31:48 +00:00
|
|
|
'info_dict': {
|
2015-04-04 10:42:14 +00:00
|
|
|
'id': '33786',
|
2015-04-04 10:31:48 +00:00
|
|
|
'ext': 'mp4',
|
2015-04-04 10:42:14 +00:00
|
|
|
'duration': 59,
|
|
|
|
'title': 'Grand Theft Auto V - Heists Trailer',
|
|
|
|
'thumbnail': 're:^https?://.*\.jpg$',
|
|
|
|
}
|
2015-04-03 13:34:49 +00:00
|
|
|
}
|
2015-04-04 10:42:14 +00:00
|
|
|
]
|
2015-04-03 13:34:49 +00:00
|
|
|
|
|
|
|
def _calculateDuration(self, durationString):
|
2015-04-04 10:42:14 +00:00
|
|
|
if (durationString.find("minutes") > -1):
|
|
|
|
duration = time.strptime(durationString, "%M minutes %S seconds")
|
|
|
|
else:
|
|
|
|
duration = time.strptime(durationString, "%S seconds")
|
2015-04-03 13:34:49 +00:00
|
|
|
return duration.tm_min * 60 + duration.tm_sec
|
|
|
|
|
|
|
|
def _fixJsonSyntax(self, json):
|
|
|
|
|
|
|
|
json = re.sub(r",\s*}", "}", json, flags=re.DOTALL)
|
|
|
|
json = re.sub(r",\s*]", "]", json, flags=re.DOTALL)
|
2015-04-04 10:42:14 +00:00
|
|
|
json = json.replace('file: "', '"file": "')
|
|
|
|
json = json.replace('title: "', '"title": "')
|
|
|
|
json = json.replace('label: "', '"label": "')
|
|
|
|
json = json.replace('image: "', '"image": "')
|
|
|
|
json = json.replace('sources: [', '"sources": [')
|
2015-04-03 13:34:49 +00:00
|
|
|
return json
|
|
|
|
|
|
|
|
def _real_extract(self, url):
|
|
|
|
|
|
|
|
video_id = self._search_regex(r'-(.*?)_[a-z]{2}.html$', url, 'video_id')
|
|
|
|
webpage = self._download_webpage(url, video_id)
|
|
|
|
|
|
|
|
filesJson = self._search_regex(r'playlist: (.*?)\}\);', webpage, 'files', flags=re.DOTALL)
|
2015-04-04 10:42:14 +00:00
|
|
|
data = self._parse_json(filesJson,video_id, transform_source=self._fixJsonSyntax)
|
|
|
|
|
2015-04-03 13:34:49 +00:00
|
|
|
playlist = data[0]
|
|
|
|
|
|
|
|
formats = []
|
|
|
|
|
|
|
|
title = re.sub(r"[0-9]+ - ", "", playlist['title'])
|
2015-04-04 10:42:14 +00:00
|
|
|
|
|
|
|
length = self._search_regex(r'(([0-9]{1,2} minutes ){0,1}[0-9]{1,2} seconds)', webpage, 'length')
|
|
|
|
duration = self._calculateDuration(length)
|
2015-04-03 13:34:49 +00:00
|
|
|
|
|
|
|
for playlistEntry in playlist['sources']:
|
|
|
|
format = {
|
|
|
|
'url': playlistEntry['file'],
|
|
|
|
'format_id': playlistEntry['label']
|
|
|
|
}
|
|
|
|
|
|
|
|
formats.append(format)
|
|
|
|
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'title': title,
|
|
|
|
'formats': formats,
|
2015-04-04 10:42:14 +00:00
|
|
|
'duration': duration,
|
2015-04-03 13:34:49 +00:00
|
|
|
'thumbnail': playlist['image']
|
|
|
|
}
|