mirror of
https://github.com/l1ving/youtube-dl
synced 2026-05-27 20:21:17 +08:00
updated beeg.py
fixed the problem in extracting descriptions. Previously, it does not extract the description correctly, only the title
This commit is contained in:
committed by
GitHub
Unverified
parent
ad98d2eb74
commit
08e4928442
@@ -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'))
|
||||
|
||||
Reference in New Issue
Block a user