youtube-dl

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

commit b0fb6d4db1ed19dfa3a38ee5fd1d38e6227c3d93
parent 81515ad9f674597e0d41be6acfcb8592f2230f32
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Mon, 27 Oct 2014 02:32:44 +0100

[ku6] Modernize

Diffstat:
Myoutube_dl/extractor/ku6.py | 10++++------
1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/youtube_dl/extractor/ku6.py b/youtube_dl/extractor/ku6.py @@ -1,7 +1,5 @@ from __future__ import unicode_literals -import re - from .common import InfoExtractor @@ -18,11 +16,11 @@ class Ku6IE(InfoExtractor): } def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') - + video_id = self._match_id(url) webpage = self._download_webpage(url, video_id) - title = self._search_regex(r'<h1 title=.*>(.*?)</h1>', webpage, 'title') + + title = self._html_search_regex( + r'<h1 title=.*>(.*?)</h1>', webpage, 'title') dataUrl = 'http://v.ku6.com/fetchVideo4Player/%s.html' % video_id jsonData = self._download_json(dataUrl, video_id) downloadUrl = jsonData['data']['f']