mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-15 22:05:39 +00:00
Update youtube_dl/extractor/videocdn.py
Co-authored-by: dirkf <fieldhouse@gmx.net>
This commit is contained in:
parent
62e96f48db
commit
6ff4cde8e8
1 changed files with 2 additions and 1 deletions
|
@ -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>[^\"]+)',
|
||||
|
|
Loading…
Reference in a new issue