Skip to content

Simple python API to download video and audio from youtube

Notifications You must be signed in to change notification settings

bryanfks-dev/YT-Downloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YT Downloader

Simple Python API to download any youtube videos or playlists in any video or audio format.

Requirements

Installation

  1. Clone the repository
git clone https://github.com/bryanfks-dev/YT-Downloader.git
  1. Modify config.py as you like
#/lib/config.py

{
    "OUTPUT_FILE": {
        "VIDEO": {
            # The extension of the video file
            # e.g mp4, mkv, etc.
            "EXTENSION": "mp4",
            "PATH": "./videos/",
        },
        "AUDIO": {
            # The extension of the audio file
            # e.g mp3, m4a, etc.
            "EXTENSION": "mp3",
            "PATH": "./audios/",
        },
    }
}
  1. Install needed depedencies
pip install requirements.txt
  1. Run main.py
python main.py

About

Simple python API to download video and audio from youtube

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages