aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-01-08 00:52:55 +0600
committerSergey M․ <dstftw@gmail.com>2016-01-08 00:52:55 +0600
commit23f13e97548cc4ff3d11408ee5bc77f682e642dc (patch)
tree7c2595948a5848c6060de48b21ee22054cee0583
parent2e02ecbccc9751af54ae2aab9ce973712c78af74 (diff)
downloadyoutube-dl-23f13e97548cc4ff3d11408ee5bc77f682e642dc.tar.xz
[youtube] Support expanding alternative format of links in description (Closes #8164)
-rw-r--r--youtube_dl/extractor/youtube.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/youtube.py b/youtube_dl/extractor/youtube.py
index 4aac2cc03..897641e42 100644
--- a/youtube_dl/extractor/youtube.py
+++ b/youtube_dl/extractor/youtube.py
@@ -1235,10 +1235,10 @@ class YoutubeIE(YoutubeBaseInfoExtractor):
video_description = re.sub(r'''(?x)
<a\s+
(?:[a-zA-Z-]+="[^"]+"\s+)*?
- title="([^"]+)"\s+
+ (?:title|href)="([^"]+)"\s+
(?:[a-zA-Z-]+="[^"]+"\s+)*?
- class="yt-uix-redirect-link"\s*>
- [^<]+
+ class="(?:yt-uix-redirect-link|yt-uix-sessionlink[^"]*)".*?>
+ [^<]+\.{3}\s*
</a>
''', r'\1', video_description)
video_description = clean_html(video_description)