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:
parent
ad98d2eb74
commit
08e4928442
@ -117,7 +117,7 @@ class BeegIE(InfoExtractor):
|
|||||||
title = video['title']
|
title = video['title']
|
||||||
video_id = video.get('id') or video_id
|
video_id = video.get('id') or video_id
|
||||||
display_id = video.get('code')
|
display_id = video.get('code')
|
||||||
description = video.get('desc')
|
description = video.get('plot more')
|
||||||
|
|
||||||
timestamp = parse_iso8601(video.get('date'), ' ')
|
timestamp = parse_iso8601(video.get('date'), ' ')
|
||||||
duration = int_or_none(video.get('duration'))
|
duration = int_or_none(video.get('duration'))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user