youtube-dl

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

commit 220bc3f0e3777b89de335cdbc58a7d105584f06b
parent 48a6c984b806141dc6d3da0a96df2e553bb815e0
Author: remitamine <remitamine@gmail.com>
Date:   Tue, 22 Dec 2015 11:27:18 +0100

[franceinter] fix title extraction

Diffstat:
Myoutube_dl/extractor/franceinter.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/extractor/franceinter.py b/youtube_dl/extractor/franceinter.py @@ -33,7 +33,7 @@ class FranceInterIE(InfoExtractor): video_url = 'http://www.franceinter.fr/' + path title = self._html_search_regex( - r'<span class="title">(.+?)</span>', webpage, 'title') + r'<span class="title-diffusion">(.+?)</span>', webpage, 'title') description = self._html_search_regex( r'<span class="description">(.*?)</span>', webpage, 'description', fatal=False)