Skip to content
/ yt-down Public

simple python yt scrapper to keep my local music updated

License

Notifications You must be signed in to change notification settings

nomook/yt-down

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

yt-down

Allow to download files from a youtube playlist. Just run the get_data.py to extract playlist data and the downloader.py to download from the data extracted.

You can make files itunes proof with ffmpeg:

for f in *.mp3; do ffmpeg -i "$f" -vn -c:a copy "audio_low/$("$f")"; done

Authentification:

Create a secret.json at the root of the project (doc here)

{
  "api_key": "XXX",
  "installed": {
    "key": "XXX",
    "client_id": "XXX",
    "project_id": "XXX",
    "auth_uri": "https://accounts.google.com/o/oauth2/auth",
    "token_uri": "https://oauth2.googleapis.com/token",
    "auth_provider_x509_cert_url": "https://www.googleapis.com/oauth2/v1/certs",
    "client_secret": "XXX",
    "redirect_uris": ["http://localhost"]
  }
}

nomook

About

simple python yt scrapper to keep my local music updated

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages