1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 02:59:31 +00:00

Update youtube_dl/extractor/videocdn.py

Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
Moritz Bunse 2023-01-21 20:17:48 +01:00 committed by GitHub
parent 62e96f48db
commit 6ff4cde8e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -44,7 +44,8 @@ class VideoCdnIE(InfoExtractor):
thumbnail = self._search_regex(
r'\"thumbnailUrl\":\"(?P<thumbnail>[^\"]+)',
webpage, 'thumbnail', group='thumbnail')
webpage, 'thumbnail', group='thumbnail',
default=None)
title = self._search_regex(
r'\"name\":\"(?P<title>[^\"]+)',