Spaces:
Runtime error
Runtime error
File size: 321 Bytes
168a18b |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
from pytube import YouTube
SAVE_DIRECTORY = "./videos"
def Download(video, fname):
video = video.streams.get_highest_resolution()
try:
video.download(SAVE_DIRECTORY, filename=fname)
print("Download is completed successfully")
except:
print("A video error has occurred")
|