Created
October 7, 2021 13:56
-
-
Save arifsetyawan/c5e1b981da6d3842f7038111fed0f7b6 to your computer and use it in GitHub Desktop.
Download Youtube Videos
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
from pytube import YouTube | |
url = "https://www.youtube.com/watch?v=hS9jaTweuPU" | |
video = YouTube(url) | |
stream = video.streams.get_highest_resolution() | |
stream.download(output_path = '.') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment