2014-07-28 18:31:33 -04:00
# coding: utf-8
from __future__ import unicode_literals
2015-02-26 09:22:05 -05:00
import re
2014-07-28 18:31:33 -04:00
from . common import InfoExtractor
2014-07-28 23:59:47 -04:00
from . . utils import (
int_or_none ,
parse_duration ,
str_to_int ,
unified_strdate ,
)
2014-07-28 18:31:33 -04:00
class GameStarIE ( InfoExtractor ) :
_VALID_URL = r ' http://www \ .gamestar \ .de/videos/.*,(?P<id>[0-9]+) \ .html '
_TEST = {
' url ' : ' http://www.gamestar.de/videos/trailer,3/hobbit-3-die-schlacht-der-fuenf-heere,76110.html ' ,
' md5 ' : ' 96974ecbb7fd8d0d20fca5a00810cea7 ' ,
' info_dict ' : {
' id ' : ' 76110 ' ,
' ext ' : ' mp4 ' ,
' title ' : ' Hobbit 3: Die Schlacht der Fünf Heere - Teaser-Trailer zum dritten Teil ' ,
' description ' : ' Der Teaser-Trailer zu Hobbit 3: Die Schlacht der Fünf Heere zeigt einige Szenen aus dem dritten Teil der Saga und kündigt den vollständigen Trailer an. ' ,
' thumbnail ' : ' http://images.gamestar.de/images/idgwpgsgp/bdb/2494525/600x.jpg ' ,
' upload_date ' : ' 20140728 ' ,
' duration ' : 17
}
}
def _real_extract ( self , url ) :
2015-01-22 19:34:24 -05:00
video_id = self . _match_id ( url )
2014-07-28 18:31:33 -04:00
webpage = self . _download_webpage ( url , video_id )
og_title = self . _og_search_title ( webpage )
2015-02-26 09:22:05 -05:00
title = re . sub ( r ' \ s*- Video (bei|-) GameStar \ .de$ ' , ' ' , og_title )
2014-07-28 18:31:33 -04:00
url = ' http://gamestar.de/_misc/videos/portal/getVideoUrl.cfm?premium=0&videoId= ' + video_id
description = self . _og_search_description ( webpage ) . strip ( )
2014-07-28 23:59:47 -04:00
thumbnail = self . _proto_relative_url (
self . _og_search_thumbnail ( webpage ) , scheme = ' http: ' )
2014-07-28 18:31:33 -04:00
2014-07-28 23:59:47 -04:00
upload_date = unified_strdate ( self . _html_search_regex (
2014-07-28 18:31:33 -04:00
r ' <span style= " float:left;font-size:11px; " >Datum: ([0-9]+ \ .[0-9]+ \ .[0-9]+) ' ,
2014-07-28 23:59:47 -04:00
webpage , ' upload_date ' , fatal = False ) )
2014-07-28 18:31:33 -04:00
2014-07-28 23:59:47 -04:00
duration = parse_duration ( self . _html_search_regex (
r ' Länge: ([0-9]+:[0-9]+)</span> ' , webpage , ' duration ' ,
fatal = False ) )
2014-07-28 18:31:33 -04:00
2014-07-28 23:59:47 -04:00
view_count = str_to_int ( self . _html_search_regex (
r ' Zuschauer: ([0-9 \ .]+) ' , webpage ,
' view_count ' , fatal = False ) )
2014-07-28 18:31:33 -04:00
2014-07-28 23:59:47 -04:00
comment_count = int_or_none ( self . _html_search_regex (
r ' >Kommentieren \ (([0-9]+) \ )</a> ' , webpage , ' comment_count ' ,
fatal = False ) )
2014-07-28 18:31:33 -04:00
return {
' id ' : video_id ,
' title ' : title ,
' url ' : url ,
' ext ' : ' mp4 ' ,
' thumbnail ' : thumbnail ,
' description ' : description ,
' upload_date ' : upload_date ,
' duration ' : duration ,
' view_count ' : view_count ,
' comment_count ' : comment_count
}