soundcloud subscription update
This commit is contained in:
parent
b123654514
commit
3609f36f75
1 changed files with 36 additions and 20 deletions
|
|
@ -2,25 +2,30 @@ config:
|
||||||
working_directory: '/Users/jesse.bannon/workspace/ytdl_subscribe/tmp'
|
working_directory: '/Users/jesse.bannon/workspace/ytdl_subscribe/tmp'
|
||||||
|
|
||||||
presets:
|
presets:
|
||||||
soundcloud:
|
soundcloud_with_id3_tags:
|
||||||
source: "soundcloud"
|
soundcloud:
|
||||||
|
download_strategy: "albums_then_tracks"
|
||||||
|
skip_premiere_tracks: True
|
||||||
ytdl_opts:
|
ytdl_opts:
|
||||||
format: 'bestaudio/best'
|
format: 'bestaudio/best'
|
||||||
extractaudio: True # only keep the audio
|
extractaudio: True # only keep the audio
|
||||||
audioformat: "mp3" # convert to mp3
|
audioformat: "mp3" # convert to mp3
|
||||||
noplaylist: True
|
noplaylist: True
|
||||||
post_process:
|
post_process:
|
||||||
file_name: "[{upload_year}] {sanitized_title}/{sanitized_title}.{ext}"
|
file_name: "[{album_year}] {sanitized_album}/{tracknumberpadded} - {sanitized_title}.{ext}"
|
||||||
thumbnail_name: "[{upload_year}] {sanitized_title}/folder.{thumbnail_ext}"
|
thumbnail_name: "[{album_year}] {sanitized_album}/folder.{thumbnail_ext}"
|
||||||
tagging:
|
tagging:
|
||||||
artist: "{artist}"
|
artist: "{artist}"
|
||||||
|
albumartist: "{artist}"
|
||||||
title: "{title}"
|
title: "{title}"
|
||||||
album: "{title}"
|
album: "{album}"
|
||||||
year: "{upload_year}"
|
tracknumber: "{tracknumber}"
|
||||||
|
year: "{album_year}"
|
||||||
genre: "{genre}"
|
genre: "{genre}"
|
||||||
|
|
||||||
music_videos:
|
music_videos:
|
||||||
source: "youtube"
|
youtube:
|
||||||
|
noop: True
|
||||||
ytdl_opts:
|
ytdl_opts:
|
||||||
format: 'best'
|
format: 'best'
|
||||||
sleep_interval: 8
|
sleep_interval: 8
|
||||||
|
|
@ -38,24 +43,35 @@ presets:
|
||||||
year: "{upload_year}"
|
year: "{upload_year}"
|
||||||
|
|
||||||
subscriptions:
|
subscriptions:
|
||||||
# delorra:
|
ALISON:
|
||||||
# url: "https://soundcloud.com/delorra/tracks"
|
preset: "soundcloud_with_id3_tags"
|
||||||
# preset: "soundcloud"
|
soundcloud:
|
||||||
# output_path: "/Users/jesse.bannon/workspace/ytdl_subscribe/delorra"
|
username: alis_on
|
||||||
# overrides:
|
output_path: "/Users/jesse.bannon/workspace/ytdl_subscribe/alison"
|
||||||
# artist: "DeLorra"
|
overrides:
|
||||||
# genre: "Synthwave / Electronic"
|
artist: "A.L.I.S.O.N."
|
||||||
|
genre: "Synthwave / Electronic"
|
||||||
|
delorra:
|
||||||
|
preset: "soundcloud_with_id3_tags"
|
||||||
|
soundcloud:
|
||||||
|
username: delorra
|
||||||
|
output_path: "/Users/jesse.bannon/workspace/ytdl_subscribe/delorra"
|
||||||
|
overrides:
|
||||||
|
artist: "DeLorra"
|
||||||
|
genre: "Synthwave / Electronic"
|
||||||
|
|
||||||
# tom_petty:
|
# tom_petty:
|
||||||
# url: "https://www.youtube.com/playlist?list=PLoopXDarluPBnuxs4PTC55Sc_2ShAXC0i"
|
# url: "https://www.youtube.com/playlist?list=PLoopXDarluPBnuxs4PTC55Sc_2ShAXC0i"
|
||||||
|
# youtube:
|
||||||
|
# playlist_id: PLoopXDarluPBnuxs4PTC55Sc_2ShAXC0i
|
||||||
# preset: "music_videos"
|
# preset: "music_videos"
|
||||||
# output_path: "tompetty_test"
|
# output_path: "tompetty_test"
|
||||||
# overrides:
|
# overrides:
|
||||||
# artist: "Tom Petty and the Heartbreakers"
|
# artist: "Tom Petty and the Heartbreakers"
|
||||||
|
|
||||||
rammstein:
|
# rammstein:
|
||||||
url: "https://www.youtube.com/playlist?list=PLVTLbc6i-h_iuhdwUfuPDLFLXG2QQnz-x"
|
# url: "https://www.youtube.com/playlist?list=PLVTLbc6i-h_iuhdwUfuPDLFLXG2QQnz-x"
|
||||||
preset: "music_videos"
|
# preset: "music_videos"
|
||||||
output_path: "rammstein test"
|
# output_path: "rammstein test"
|
||||||
overrides:
|
# overrides:
|
||||||
artist: "Rammstein"
|
# artist: "Rammstein"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue