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:
gabrielxxx 2018-09-08 02:11:21 +02:00 committed by GitHub
parent ad98d2eb74
commit 08e4928442
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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'))