X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fgdcvault.py;h=3136427db39a2f1739fa0a791bd2cc85f1eedd02;hb=fd5c4aab5958a2a086072488913cc190ff028bc3;hp=01e1ceec8e212c13e7f86a15ba7a161755ff8ad2;hpb=ec59d657e7d898cce8f3a1b6556a79fd9495fc9d;p=youtube-dl diff --git a/youtube_dl/extractor/gdcvault.py b/youtube_dl/extractor/gdcvault.py index 01e1ceec8..3136427db 100644 --- a/youtube_dl/extractor/gdcvault.py +++ b/youtube_dl/extractor/gdcvault.py @@ -52,6 +52,7 @@ class GDCVaultIE(InfoExtractor): 'only_matching': True, }, { + # Hard-coded hostname 'url': 'http://gdcvault.com/play/1023460/Tenacious-Design-and-The-Interface', 'md5': 'a8efb6c31ed06ca8739294960b2dbabd', 'info_dict': { @@ -61,6 +62,19 @@ class GDCVaultIE(InfoExtractor): 'title': 'Tenacious Design and The Interface of \'Destiny\'', }, }, + { + # Multiple audios + 'url': 'http://www.gdcvault.com/play/1014631/Classic-Game-Postmortem-PAC', + 'info_dict': { + 'id': '1014631', + 'ext': 'flv', + 'title': 'How to Create a Good Game - From My Experience of Designing Pac-Man', + }, + 'params': { + 'skip_download': True, # Requires rtmpdump + 'format': 'jp', # The japanese audio + } + }, ] def _login(self, webpage_url, display_id): @@ -143,5 +157,5 @@ class GDCVaultIE(InfoExtractor): 'id': video_id, 'display_id': display_id, 'url': '%s/xml/%s' % (xml_root, xml_name), - 'ie': 'DigitalSpeaking', + 'ie_key': 'DigitallySpeaking', }