DEV Community

Spandan Sehgal
Spandan Sehgal

Posted on

4 1 1 1 1

How to download YouTube Videos using Python

Intro

Hello everyone I hope you are doing well.
In this post, as you read the title we are going to make a YouTube video downloader in Python it is a very simple and fun project to build.

Modules needed :-

1) pytube :- it is an module which lets us access YouTube content from python

Installation :-

pip install pytube

Let's Code

First we will import the module which we installed

#Importing the required modules
import pytube
Enter fullscreen mode Exit fullscreen mode

Now we will ask the user for entering the link of the video and a path where he/she has to save the video

#Asking for the link
link = input("Enter the link:\n ")

#Asking for the save location
save_path = input("Enter the path to save the video: ")
Enter fullscreen mode Exit fullscreen mode

Now we will download the video and save it to the provided location

#Downloading the video with .mp4 extension to the save location
yt = pytube.YouTube(link)
stream = yt.streams.filter(file_extension='mp4').first()
stream.download(save_path)
Enter fullscreen mode Exit fullscreen mode

In the line yt.streams.filter(file_extension='mp4').first() we can define in which format we want to save the file, so in most cases .mp4 extension is the best.

And with that done we have successfully created our project.
I hope you all enjoyed the post.
Stay safe and do take very good care of yourselves!

Feel free to ask doubts or suggest me something that I can build in next post or anything I can add in this project.

Happy Coding !

AWS Q Developer image

Your AI Code Assistant

Generate and update README files, create data-flow diagrams, and keep your project fully documented. Built to handle large projects, Amazon Q Developer works alongside you from idea to production code.

Get started free in your IDE

Top comments (3)

Collapse
 
sanjay2109 profile image
Sanjay2109

Hi dude. I see that even you study class 8(and so do I ;) )

Let's chat and become friends!

Collapse
 
sehgalspandan profile image
Spandan Sehgal

Hey nice to hear that.
Thanks

Collapse
 
sehgalspandan profile image
Spandan Sehgal

Feel free to ask/suggest something!

AWS Security LIVE!

Join us for AWS Security LIVE!

Discover the future of cloud security. Tune in live for trends, tips, and solutions from AWS and AWS Partners.

Learn More

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay