Skip to content

Latest commit

 

History

History
68 lines (49 loc) · 2.13 KB

README.md

File metadata and controls

68 lines (49 loc) · 2.13 KB

📺 Youtube Video Downloader


Usage in Terminal 💻:

python youtube_video_downloader.py [quality] [link]

Example :

python youtube_video_downloader.py FHD https://www.youtube.com/watch?v=dQw4w9WgXcQ

python youtube_video_downloader.py https://www.youtube.com/watch?v=dQw4w9WgXcQ

⭐ Quality arguments -

  • For 4K quality use 4K / 2160p / UHD
  • For 2K quality use 2K / 1440p / QHD
  • For 1080 quality use 1K / 1080p / FHD
  • For 720p quality use 720p / HD
  • If no quality argument is passed then 720p is selected as Default.

Insert link in place of [link] in Terminal.


📄 It is a video downloader for YouTube created using pytube and some other libraries for downloading videos in mp4 format.



Before using the video downloader

  • first install the necessary libraries by running in terminal the following commands:

    pip install youtube_downloader-2.0-py3-none-any.whl
    wheel unpack youtube_downloader-2.0-py3-none-any.whl
    
  • OR manually install libraries by running

    pip install pytube moviepy wheel
    wheel unpack youtube_downloader-2.0-py3-none-any.whl
    
  • Then changing directory to the python file

    cd .\youtube_downloader-2.0\youtube_downloader\
    
  • Now you are ready to use the video downloader

It can be used to download YouTube videos of 4K, 2K, 1080p, 720p size.

pytube and moviepy are dependency required.

To Batch install videos insert all links in 'links' list

Quality greater than 720p takes much more Time to download.

You can also use the YouTube_Downloader() function in your code by importing youtube_downloader package and calling the function

YouTube_Downloader() function takes 2 arguments first is link to video and second is quality of video.

URL of WHL file : https://github.com/rony0000013/youtube_downloader_full/blob/master/dist/youtube_downloader-2.0-py3-none-any.whl

URL of repository : https://github.com/rony0000013/youtube_downloader_full



created by Rounak Sen