TechNotes
Colab
Machine Learning
Neural Network
Python
What Is Emotions?
Are you sure that you got it right?
Friday, June 16, 2023
[python] [pytube] download youtube video
Download youtube video using Python Pytube
from pytube import YouTube def download_360p_mp4_videos(url: str, outpath: str = "./"): yt = YouTube(url) yt.streams.filter(file_extension="mp4").get_by_resolution("360p").download(outpath) if __name__ == "__main__": dest_folder='./output' download_360p_mp4_videos( "https://youtu.be/xX-b-yPad-8", dest_folder, )
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment