diff options
author | Ensa <psychoticfervor@tuta.io> | 2019-12-20 00:14:09 -0800 |
---|---|---|
committer | Ensa <psychoticfervor@tuta.io> | 2019-12-20 00:14:09 -0800 |
commit | 4684d80b6271dd775cd23dabf2b91d6ce56fa33a (patch) | |
tree | ddb6c6219e213132b8500e016b1ce238aa71029d /config/youtube-dl | |
parent | f733ca7c8041866df27752c8e0c2610e0ecef6a7 (diff) | |
download | cfg-4684d80b6271dd775cd23dabf2b91d6ce56fa33a.tar.gz |
first significant commit
see README.md for information
Diffstat (limited to 'config/youtube-dl')
-rw-r--r-- | config/youtube-dl/config | 9 | ||||
-rw-r--r-- | config/youtube-dl/config-music | 6 |
2 files changed, 15 insertions, 0 deletions
diff --git a/config/youtube-dl/config b/config/youtube-dl/config new file mode 100644 index 0000000..46041ac --- /dev/null +++ b/config/youtube-dl/config @@ -0,0 +1,9 @@ +--prefer-free-formats +# always use axel +--external-downloader axel +# coherent output format +--output ~/vid/%(uploader)s:%(title)s.%(ext)s +# always merge into mkv +--merge-output-format mkv +# embed subtitles if they are to be written +--embed-subs diff --git a/config/youtube-dl/config-music b/config/youtube-dl/config-music new file mode 100644 index 0000000..a5cf801 --- /dev/null +++ b/config/youtube-dl/config-music @@ -0,0 +1,6 @@ +# only download audio stream +--format bestaudio +# always use axel +--external-downloader axel +# coherent output format +--output ~/mus/%(uploader)s/%(album)s/S%(track_number)s-%(track)s.%(ext)s |