Skip to content

A youtube downloader. Uses the modules: "yt-dlp", "FFmpeg", "FFplay", and "FFprobe". These modules cannot be pip installed, they have to download externally. I have included these modules on this GitHub page. Make sure these four modules are stored where modules are normally stored to be referenced by your specific project.

Notifications You must be signed in to change notification settings

ShaneWD/Youtube_Download

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Youtube_Download

Download Videos and Music from YouTube. For Free!

A youtube downloader. Uses the modules: "yt-dlp", "FFmpeg", "FFplay", and "FFprobe". These modules cannot be pip installed, they have to download externally. I have included these modules on this GitHub page. Make sure these four modules are stored where modules are normally stored to be referenced by your specific project.

Necessities

yt-dlp

FFmpeg

FFplay

FFprobe

Download Videos

from __future__ import unicode_literals
import os

link = input("""What is the YouTube link?
>""")

os.system(f'yt-dlp {link}')

Download Music

from __future__ import unicode_literals
import os

link = input("""What is the YouTube link?
>""")

os.system(f'yt-dlp -f bestaudio --extract-audio --audio-format mp3 --audio-quality 0 {link}')

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change. Suggesting changes are fine, however, be descriptive.

My Youtube

Shane Dsi

About

A youtube downloader. Uses the modules: "yt-dlp", "FFmpeg", "FFplay", and "FFprobe". These modules cannot be pip installed, they have to download externally. I have included these modules on this GitHub page. Make sure these four modules are stored where modules are normally stored to be referenced by your specific project.

Topics

Resources

Stars

Watchers

Forks

Languages