X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fsteam.py;h=91658f8925cac6199bda5f7aa05aa0a2a73e85e4;hb=36034aecc287f67a9f93fa00f374f45dcb0e2f77;hp=30cb83208f5f78231ee56771d92c67c0dab5a596;hpb=825e0984e27f0c626c4d072066e0c9cae9069704;p=youtube-dl diff --git a/youtube_dl/extractor/steam.py b/youtube_dl/extractor/steam.py index 30cb83208..91658f892 100644 --- a/youtube_dl/extractor/steam.py +++ b/youtube_dl/extractor/steam.py @@ -16,6 +16,28 @@ class SteamIE(InfoExtractor): """ _VIDEO_PAGE_TEMPLATE = 'http://store.steampowered.com/video/%s/' _AGECHECK_TEMPLATE = 'http://store.steampowered.com/agecheck/video/%s/?snr=1_agecheck_agecheck__age-gate&ageDay=1&ageMonth=January&ageYear=1970' + _TEST = { + u"url": u"http://store.steampowered.com/video/105600/", + u"playlist": [ + { + u"file": u"81300.flv", + u"md5": u"f870007cee7065d7c76b88f0a45ecc07", + u"info_dict": { + u"title": u"Terraria 1.1 Trailer", + u'playlist_index': 1, + } + }, + { + u"file": u"80859.flv", + u"md5": u"61aaf31a5c5c3041afb58fb83cbb5751", + u"info_dict": { + u"title": u"Terraria Trailer", + u'playlist_index': 2, + } + } + ] + } + @classmethod def suitable(cls, url):