youtube-dl

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

commit 23ae281b31d5c4042f15ffb8e5ded0065a0dc808
parent 94128d6b0d94551ea23daf59983557c777c1e251
Author: Philipp Hagemeister <phihag@phihag.de>
Date:   Sat,  7 Jun 2014 16:52:11 +0200

[fc2] Fall back to webpage title if needed

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

diff --git a/youtube_dl/extractor/fc2.py b/youtube_dl/extractor/fc2.py @@ -50,10 +50,13 @@ class FC2IE(InfoExtractor): raise ExtractorError('Error code: %s' % info['err_code'][0]) video_url = info['filepath'][0] + '?mid=' + info['mid'][0] + title_info = info.get('title') + if title_info: + title = title_info[0] return { 'id': video_id, - 'title': info['title'][0], + 'title': title, 'url': video_url, 'ext': 'flv', 'thumbnail': thumbnail,