youtube-dl

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

commit cbbece96a25443dbf5cb66819883efa2e9b66de4
parent 9d8ba307ef18e737efc0be5164b53e0546288a4d
Author: Yen Chi Hsuan <yan12125@gmail.com>
Date:   Wed, 29 Apr 2015 04:05:14 +0800

[yourupload] Simplify

Diffstat:
Myoutube_dl/extractor/yourupload.py | 14+++-----------
1 file changed, 3 insertions(+), 11 deletions(-)

diff --git a/youtube_dl/extractor/yourupload.py b/youtube_dl/extractor/yourupload.py @@ -1,8 +1,6 @@ # coding: utf-8 from __future__ import unicode_literals -import re - from .common import InfoExtractor @@ -35,25 +33,19 @@ class YourUploadIE(InfoExtractor): ] def _real_extract(self, url): - mobj = re.match(self._VALID_URL, url) - video_id = mobj.group('id') + video_id = self._match_id(url) embed_url = 'http://embed.yucache.net/{0:}'.format(video_id) webpage = self._download_webpage(embed_url, video_id) title = self._og_search_title(webpage) - thumbnail = self._og_search_thumbnail(webpage) video_url = self._og_search_video_url(webpage) - - formats = [{ - 'format_id': 'sd', - 'url': video_url, - }] + thumbnail = self._og_search_thumbnail(webpage, default=None) return { 'id': video_id, 'title': title, - 'formats': formats, + 'url': video_url, 'thumbnail': thumbnail, 'http_headers': { 'Referer': embed_url,