youtube-dl

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

commit 41c23b0da58ba36805a67f4736890475ab7abedf
parent 2578ab19e4988a009405337cab820eec96e97e22
Author: Sergey M․ <dstftw@gmail.com>
Date:   Sun,  8 Feb 2015 23:12:59 +0600

[gamekings] Support videos from news pages

Diffstat:
Myoutube_dl/extractor/gamekings.py | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/gamekings.py b/youtube_dl/extractor/gamekings.py @@ -9,7 +9,7 @@ from ..utils import ( class GamekingsIE(InfoExtractor): - _VALID_URL = r'http://www\.gamekings\.tv/videos/(?P<id>[^/]+)' + _VALID_URL = r'http://www\.gamekings\.tv/(?:videos|nieuws)/(?P<id>[^/]+)' _TESTS = [{ 'url': 'http://www.gamekings.tv/videos/phoenix-wright-ace-attorney-dual-destinies-review/', # MD5 is flaky, seems to change regularly @@ -32,6 +32,9 @@ class GamekingsIE(InfoExtractor): 'description': 'md5:9917825fe0e9f4057601fe1e38860de3', 'thumbnail': 're:^https?://.*\.jpg$', }, + }, { + 'url': 'http://www.gamekings.tv/nieuws/gamekings-extra-shelly-en-david-bereiden-zich-voor-op-de-livestream/', + 'only_matching': True, }] def _real_extract(self, url):