1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-05 19:40:08 +02:00

[underline] Added slide_info to info_dict

This commit is contained in:
NightMachinery 2022-12-06 07:30:19 +03:30
parent 2cb546cf8e
commit 93a079d865
No known key found for this signature in database
GPG Key ID: C567089D40CA8367

View File

@ -36,6 +36,13 @@ class UnderlineIE(InfoExtractor):
"id": "342/posters/12863/poster/66463-mbti-personality-prediction-approach-on-persian-twitter",
"ext": "mp4",
"title": "MBTI Personality Prediction Approach on Persian Twitter",
"slide_info": [
{
"url": "https://assets.underline.io/lecture/66463/slideshow/b236b5cfb38966a761a5443bf47fbdf9.pdf",
"filename": "Personality-Prediction-WINLP-slides.pdf",
"size": 780319,
}
],
},
}
]
@ -84,8 +91,11 @@ def _real_extract(self, url):
)
)
slide_info = list(gen_dict_extract(webpage_info, "slideshow"))
return {
"id": video_id,
"title": title,
"formats": formats,
"slide_info": slide_info,
}