mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 11:20:41 +00:00
Fixed an error downloading vimeo pro videos.
This commit is contained in:
parent
418f734a58
commit
c794cbbb19
@ -1099,7 +1099,7 @@ class VimeoIE(InfoExtractor):
|
|||||||
|
|
||||||
# Extract uploader and uploader_id
|
# Extract uploader and uploader_id
|
||||||
video_uploader = config["video"]["owner"]["name"]
|
video_uploader = config["video"]["owner"]["name"]
|
||||||
video_uploader_id = config["video"]["owner"]["url"].split('/')[-1]
|
video_uploader_id = config["video"]["owner"]["url"].split('/')[-1] if config["video"]["owner"]["url"] else None
|
||||||
|
|
||||||
# Extract video thumbnail
|
# Extract video thumbnail
|
||||||
video_thumbnail = config["video"]["thumbnail"]
|
video_thumbnail = config["video"]["thumbnail"]
|
||||||
|
Loading…
Reference in New Issue
Block a user