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'
|
||||
|
||||
presets:
|
||||
soundcloud:
|
||||
source: "soundcloud"
|
||||
soundcloud_with_id3_tags:
|
||||
soundcloud:
|
||||
download_strategy: "albums_then_tracks"
|
||||
skip_premiere_tracks: True
|
||||
ytdl_opts:
|
||||
format: 'bestaudio/best'
|
||||
extractaudio: True # only keep the audio
|
||||
audioformat: "mp3" # convert to mp3
|
||||
noplaylist: True
|
||||
post_process:
|
||||
file_name: "[{upload_year}] {sanitized_title}/{sanitized_title}.{ext}"
|
||||
thumbnail_name: "[{upload_year}] {sanitized_title}/folder.{thumbnail_ext}"
|
||||
file_name: "[{album_year}] {sanitized_album}/{tracknumberpadded} - {sanitized_title}.{ext}"
|
||||
thumbnail_name: "[{album_year}] {sanitized_album}/folder.{thumbnail_ext}"
|
||||
tagging:
|
||||
artist: "{artist}"
|
||||
albumartist: "{artist}"
|
||||
title: "{title}"
|
||||
album: "{title}"
|
||||
year: "{upload_year}"
|
||||
album: "{album}"
|
||||
tracknumber: "{tracknumber}"
|
||||
year: "{album_year}"
|
||||
genre: "{genre}"
|
||||
|
||||
music_videos:
|
||||
source: "youtube"
|
||||
youtube:
|
||||
noop: True
|
||||
ytdl_opts:
|
||||
format: 'best'
|
||||
sleep_interval: 8
|
||||
|
|
@ -38,24 +43,35 @@ presets:
|
|||
year: "{upload_year}"
|
||||
|
||||
subscriptions:
|
||||
# delorra:
|
||||
# url: "https://soundcloud.com/delorra/tracks"
|
||||
# preset: "soundcloud"
|
||||
# output_path: "/Users/jesse.bannon/workspace/ytdl_subscribe/delorra"
|
||||
# overrides:
|
||||
# artist: "DeLorra"
|
||||
# genre: "Synthwave / Electronic"
|
||||
ALISON:
|
||||
preset: "soundcloud_with_id3_tags"
|
||||
soundcloud:
|
||||
username: alis_on
|
||||
output_path: "/Users/jesse.bannon/workspace/ytdl_subscribe/alison"
|
||||
overrides:
|
||||
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:
|
||||
# url: "https://www.youtube.com/playlist?list=PLoopXDarluPBnuxs4PTC55Sc_2ShAXC0i"
|
||||
# youtube:
|
||||
# playlist_id: PLoopXDarluPBnuxs4PTC55Sc_2ShAXC0i
|
||||
# preset: "music_videos"
|
||||
# output_path: "tompetty_test"
|
||||
# overrides:
|
||||
# artist: "Tom Petty and the Heartbreakers"
|
||||
|
||||
rammstein:
|
||||
url: "https://www.youtube.com/playlist?list=PLVTLbc6i-h_iuhdwUfuPDLFLXG2QQnz-x"
|
||||
preset: "music_videos"
|
||||
output_path: "rammstein test"
|
||||
overrides:
|
||||
artist: "Rammstein"
|
||||
# rammstein:
|
||||
# url: "https://www.youtube.com/playlist?list=PLVTLbc6i-h_iuhdwUfuPDLFLXG2QQnz-x"
|
||||
# preset: "music_videos"
|
||||
# output_path: "rammstein test"
|
||||
# overrides:
|
||||
# artist: "Rammstein"
|
||||
|
|
|
|||
Loading…
Reference in a new issue