youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 082177146629bf96696bc0c9060c90fc8aa7e111
parent 83f6f68e7987ce20f823c43a02517269dde12bee
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Thu, 27 Jun 2013 20:20:00 +0200

[steam] move test

Diffstat:
Mtest/tests.json | 20--------------------
Myoutube_dl/extractor/steam.py | 21+++++++++++++++++++++
2 files changed, 21 insertions(+), 20 deletions(-)

diff --git a/test/tests.json b/test/tests.json @@ -177,26 +177,6 @@ } }, { - "name": "Steam", - "url": "http://store.steampowered.com/video/105600/", - "playlist": [ - { - "file": "81300.flv", - "md5": "f870007cee7065d7c76b88f0a45ecc07", - "info_dict": { - "title": "Terraria 1.1 Trailer" - } - }, - { - "file": "80859.flv", - "md5": "61aaf31a5c5c3041afb58fb83cbb5751", - "info_dict": { - "title": "Terraria Trailer" - } - } - ] - }, - { "name": "Ustream", "url": "http://www.ustream.tv/recorded/20274954", "file": "20274954.flv", diff --git a/youtube_dl/extractor/steam.py b/youtube_dl/extractor/steam.py @@ -16,6 +16,27 @@ 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"name": u"Steam", + 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"file": u"80859.flv", + u"md5": u"61aaf31a5c5c3041afb58fb83cbb5751", + u"info_dict": { + u"title": u"Terraria Trailer" + } + } + ] + } + @classmethod def suitable(cls, url):