Last active
May 28, 2021 08:36
-
-
Save springcoil/246cce66056f7e42ebad667da84872e7 to your computer and use it in GitHub Desktop.
download and create audio
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def downloadYouTube(videourl, filename): | |
yt = YouTube(videourl) | |
yt.streams.get_highest_resolution().download(filename = "./" + filename) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment