vmassuchetto / beets-ydl

Download audio from youtube-dl sources and import into beets
43 stars 9 forks source link

Travis CI

beets ydl

Download audio from youtube-dl sources and import into beets

$ beet ydl "https://www.youtube.com/watch?v=wW6ykueIhX8"

$ beet ls short music for short people

59 Times the Pain - Short Music for Short People - We Want the Kids
7 Seconds - Short Music for Short People - F.O.F.O.D.
88 Fingers Louie - Short Music for Short People - All My Friends Are in Popular Bands
Adrenalin O.D. - Short Music for Short People - Your Kung Fu Is Old... And Now You Must Die!
Aerobitch - Short Music for Short People - Steamroller Blues
[...]

Installation

pip install beets-ydl

And enable ydl plugin on your config.yaml file.

Configuration

Available options and default values on config.yaml:

plugins: ydl

ydl:
    download: True         # download files from sources after getting information,
    split_files: True       # try to split album files into separate tracks,
    import: True           # import files on youtube-dl after downloading and splitting,
    youtubedl_options: {}  # youtube-dl available options -- https://git.io/fN0c7
    urls: []               # list of default urls to download when no arguments are provided, you
                           # can provide a playlist to get checked every time

How it works

The plugin main goal is to deliver an importable file set to the beet import command, so it will download an audio file, look for a tracklist with track times in the video description, split the file into per-track files, assign some basic ID3 tags to them, and finally run beet import on ${BEETS_CONFIG}/ydl-cache/${VIDEO_ID} directory.

Tips

Development

Execute the env script to get into a virtualenv.

. ./env.develop