youtube-dl

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

commit 1316b54956ac871b4644b6760c5bf88207b2e58f
parent cbc1fadd6f544619b711209b68ea15a912ca0fa1
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Wed,  8 Jul 2015 13:43:23 +0800

[clipsyndicate] Use _match_id

Diffstat:
Myoutube_dl/extractor/clipsyndicate.py | 5+----
1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/youtube_dl/extractor/clipsyndicate.py b/youtube_dl/extractor/clipsyndicate.py @@ -1,7 +1,5 @@ from __future__ import unicode_literals -import re - from .common import InfoExtractor from ..utils import ( find_xpath_attr, @@ -28,8 +26,7 @@ class ClipsyndicateIE(InfoExtractor): }] def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') + video_id = self._match_id(url) js_player = self._download_webpage( 'http://eplayer.clipsyndicate.com/embed/player.js?va_id=%s' % video_id, video_id, 'Downlaoding player')