youtube-dl

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

commit 791d6aaeccd2efae2c4c5fa1e72010be85eb89b8
parent 81de73e5b43e5009a14f569aed92fe73e61d4f03
Author: Martin Trigaux <me@mart-e.be>
Date:   Tue, 29 Mar 2016 14:34:58 +0200

screencast.com: fallback on page title

When determining the title of the page, use the <title> tag of the page

Diffstat:
Myoutube_dl/extractor/screencast.py | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/screencast.py b/youtube_dl/extractor/screencast.py @@ -97,7 +97,8 @@ class ScreencastIE(InfoExtractor): if title is None: title = self._html_search_regex( [r'<b>Title:</b> ([^<]*)</div>', - r'class="tabSeperator">></span><span class="tabText">(.*?)<'], + r'class="tabSeperator">></span><span class="tabText">(.*?)<', + r'<title>([^<]*)</title>'], webpage, 'title') thumbnail = self._og_search_thumbnail(webpage) description = self._og_search_description(webpage, default=None)