Skip to content

🐱‍💻VideoDownloader is an open source project created to install video or audio from different site

Notifications You must be signed in to change notification settings

chenak-a/VideoDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

VideoDownloader

made-with-python

VideoDownloader is an open source project created to install video or audio from different site

🛠️ Installation

Create a venv and then install the requirements.

pip install -r requirements.txt

🏗️ Usage

VideoQuality

def main():
    downloader = VideoDownloader()
    video = [
        
        "https://www.youtube.com/watch?v=IUWJ8_lkFAA",
        "https://www.youtube.com/watch?v=G8h_2bvkHa0",
        "https://www.youtube.com/watch?v=F9Zt4IFOvLI",
    ]
    audio = [
        "https://www.youtube.com/watch?v=BYRsQvPOv6o",
        ]
    
    downloader.run(video=video, audio=audio)


if __name__ == "__main__":
    main()

🎉 Result