From 08e49284424b4afc36f48d2b7400596a829583b9 Mon Sep 17 00:00:00 2001 From: gabrielxxx <43080703+gabrielxxx@users.noreply.github.com> Date: Sat, 8 Sep 2018 02:11:21 +0200 Subject: [PATCH] updated beeg.py fixed the problem in extracting descriptions. Previously, it does not extract the description correctly, only the title --- youtube_dl/extractor/beeg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/youtube_dl/extractor/beeg.py b/youtube_dl/extractor/beeg.py index bf22a41b7..783d00242 100644 --- a/youtube_dl/extractor/beeg.py +++ b/youtube_dl/extractor/beeg.py @@ -117,7 +117,7 @@ class BeegIE(InfoExtractor): title = video['title'] video_id = video.get('id') or video_id display_id = video.get('code') - description = video.get('desc') + description = video.get('plot more') timestamp = parse_iso8601(video.get('date'), ' ') duration = int_or_none(video.get('duration'))