youtube-dl

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

commit a853427427269549593a0217db203305332ac983
parent 50e989e2636fc59ed896cc021b1b594bd10e9e17
Author: Sergey M․ <dstftw@gmail.com>
Date:   Thu, 28 Jan 2016 23:23:13 +0600

[bbc] Add another description regex

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

diff --git a/youtube_dl/extractor/bbc.py b/youtube_dl/extractor/bbc.py @@ -485,7 +485,8 @@ class BBCCoUkIE(InfoExtractor): (r'<h2[^>]+id="parent-title"[^>]*>(.+?)</h2>', r'<div[^>]+class="info"[^>]*>\s*<h1>(.+?)</h1>'), webpage, 'title') description = self._search_regex( - r'<p class="[^"]*medium-description[^"]*">([^<]+)</p>', + (r'<p class="[^"]*medium-description[^"]*">([^<]+)</p>', + r'<div[^>]+class="info_+synopsis"[^>]*>([^<]+)</div>'), webpage, 'description', default=None) if not description: description = self._html_search_meta('description', webpage)