Skip to content

Instantly share code, notes, and snippets.

@GitToDaChoppa
Last active February 27, 2021 20:02
Show Gist options
  • Select an option

  • Save GitToDaChoppa/a5595631ffebc7d4e7d9e160b6fade0c to your computer and use it in GitHub Desktop.

Select an option

Save GitToDaChoppa/a5595631ffebc7d4e7d9e160b6fade0c to your computer and use it in GitHub Desktop.
import youtube_dl
# Asks for the url
link = input("Write the url")
# Instantiate the YoutubeDL class from the youtube_dl framework
ydl = youtube_dl.YoutubeDL({})
# Download the video.
ydl.download([link])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment