Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upGitHub is where the world builds software
Millions of developers and companies build, ship, and maintain their software on GitHub — the largest and most advanced development platform in the world.
Using forcethumbnail=true and Download=False using python #5008
Comments
|
This is the right place to post - what made you think otherwise? You can simply look into the The following code works fine for me:
I am closing this issue now, since the code works fine for me. If there is still a problem, please say so and we will reopen it. Thanks! |
Im pretty sure this is not the right place to post but i couldnt find an oficial forum or group.
im trying to get the thumbnail url from a video using python, how do i do that?
this is my code wich shows the Url and Title:
def getdata(url)
ydl = youtube_dl.YoutubeDL({'outtmpl': '%(id)s%(ext)s'})
result = ydl.extract_info(url,download=False)
url = result['url']
title = result['title']
writecvs(url, title, tags)
Thanks and sorry for posting in the wrong place.