youtube-dl

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

commit a2d5a4ee64926c82d0f7d29aebd7654044a61f89
parent dffcc2ea0c397bafb1712bcc29c0620fa86516ed
Author: Sergey M․ <dstftw@gmail.com>
Date:   Wed, 14 May 2014 20:13:34 +0700

[gamespot] Update test URL and modernize

Diffstat:
Myoutube_dl/extractor/gamespot.py | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/youtube_dl/extractor/gamespot.py b/youtube_dl/extractor/gamespot.py @@ -15,11 +15,12 @@ from ..utils import ( class GameSpotIE(InfoExtractor): _VALID_URL = r'(?:http://)?(?:www\.)?gamespot\.com/.*-(?P<page_id>\d+)/?' _TEST = { - "url": "http://www.gamespot.com/arma-iii/videos/arma-iii-community-guide-sitrep-i-6410818/", - "file": "gs-2300-6410818.mp4", - "md5": "b2a30deaa8654fcccd43713a6b6a4825", - "info_dict": { - "title": "Arma 3 - Community Guide: SITREP I", + 'url': 'http://www.gamespot.com/videos/arma-3-community-guide-sitrep-i/2300-6410818/', + 'md5': 'b2a30deaa8654fcccd43713a6b6a4825', + 'info_dict': { + 'id': 'gs-2300-6410818', + 'ext': 'mp4', + 'title': 'Arma 3 - Community Guide: SITREP I', 'description': 'Check out this video where some of the basics of Arma 3 is explained.', } }