How to download video from youtube using python module ?

Author: neptune | 22nd-May-2022 | Views: 2060
#Python

We are going to learn how to download youtube videos using python module.

First of all you need to install the youtube-dl module. For installation follow the steps and commands.

Note: Windows user use pip instead of pip3.

~$ pip3 install youtube-dl
Collecting youtube-dl
Downloading youtube_dl-2020.6.16.1-py2.py3-none-any.whl (1.8 MB)
|████████████████████████████████| 1.8 MB 273 kB/s
Installing collected packages: youtube-dl
Successfully installed youtube-dl-2020.6.16.1





After installation you need a single command to download video, copy the link of video form the browser. As shown below paste the link in command prompt or terminal followed by youtube-dl.

~$ youtube-dl https://www.youtube.com/watch?v=jppi2eUAq2k
[youtube] jppi2eUAq2w: Downloading webpage
[download] Destination: Stay Home And Sing With Me-jppi2eUAq2w.mp4
[download] 0.4% of 758.49MiB at 241.61KiB/s ETA 53:20^Z

Downloading started.


You can also create a python script to download multiple videos at once.

For that create a python file (eg. download_video.py) and paste the below script or code into the file.

import youtube_dl

def download():
video_url = input("Enter URL: ")
video_info = youtube_dl.YoutubeDL().extract_info(
url=video_url, download = False
)
file = f"{video_info['title']}.mp3"
options={
'format':'bestvideo+bestaudio',
'writethumbnail':'writethumbnail',
'writesubtitles':'writesubtitles',
'writedescription':'writedescription'
}
with youtube_dl.YoutubeDL(options) as ydl:
ydl.download([video_info['webpage_url']])

if __name__ == '__main__':
download()





With the help of this you can also download entire playlists, metadata, thumbnails, subtitles, annotations, descriptions, audio, and many more more easily.

  1. 'format' : 'bestvideo+bestaudio' it will download the file in best quality.
  2. 'writethumbnail' : 'writethumbnail' download thumbnail image of video.
  3. 'writesubtitles' : 'writesubtitles' if subtitle is avilable then it will download.
  4. 'writedescription' : 'writedescription' write video description in a file.


I hope you successfully download the video if you face any problem plz let me know in the comment section.

Thanks for Reading!



anonymous | June 19, 2022, 7:47 a.m.

Helpful 👍


anonymous | Feb. 23, 2022, 1:59 p.m.

Awesome, I was able to download 😎



Related Blogs
How to extract Speech from Video using Python?
Author: neptune | 01st-Dec-2022 | Views: 3402
#Python
Simple and easy way to convert video into audio then text using Google Speech Recognition API...

Mostly asked Python Interview Questions - 2022.
Author: neptune | 25th-May-2022 | Views: 1161
#Python #Interview
Python interview questions for freshers. These questions asked in 2022 Python interviews...

How to reverse string in Python ?
Author: neptune | 16th-May-2022 | Views: 1037
#Python
We are going to explore different ways to reverse string in Python...

Python Built-in functions lambda, map, filter, reduce.
Author: neptune | 22nd-May-2022 | Views: 949
#Python
We are going to explore in deep some important Python build-in functions lambda, map, filter and reduce with examples...

Best Python package manager and package for virtual environment ?
Author: neptune | 15th-Apr-2022 | Views: 896
#Python #Anaconda #Virtualenv #Pip
Which is the best package manager for python and Virtual environment management using Virtualenv and Anaconda...

Deploy Django project on AWS with Apache2 and mod_wsgi module.
Author: neptune | 22nd-May-2022 | Views: 872
#Python #Django
In this blog I use the AWS Ubuntu 18.22 instance as Hosting platform and used Apache2 server with mod_wsgi for configurations. We create a django sample project then configure server...

Will, AI kills Developer's jobs?
Author: neptune | 22nd-May-2022 | Views: 691
#Python #Machine learning #AI
GPT-3’s performance has convinced that Artificial intelligence is closer or at least AI-generated code is closer than we think. It generates imaginative, insightful, deep, and even excellent content...

Core Python Syllabus for Interviews
Author: neptune | 11th-Jun-2022 | Views: 680
#Python #Interview
STRING MANIPULATION : Introduction to Python String, Accessing Individual Elements, String Operators, String Slices, String Functions and Methods...

Do you know Jupyter is now full-fledged IDE?
Author: neptune | 15th-Apr-2022 | Views: 638
#Python #Jupyter
Jupyter is a widely used tool by Data scientists. So developers from institutions like Two Sigma, Bloomberg and fast.ai convert it into IDE lets see..

Datatypes in Python.
Author: neptune | 22nd-May-2022 | Views: 408
#Python
Python have different types of datatypes like Numbers, Strings, Lists, Tuples, Dictionary, Set, Frozenset, Bool, Mutable, and Immutable...

View More