Browse Source

[franceinter] fix title extraction

totalwebcasting
remitamine 9 years ago
parent
commit
220bc3f0e3
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/franceinter.py

+ 1
- 1
youtube_dl/extractor/franceinter.py View File

@ -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)


Loading…
Cancel
Save