6 lines
314 B
Batchfile
Executable File
6 lines
314 B
Batchfile
Executable File
@ECHO OFF
|
|
{{ range .SongData -}}
|
|
IF NOT EXIST "{{.OtherSinger}}\" MKDIR {{.OtherSinger}}
|
|
IF NOT EXIST "{{.OtherSinger}}\{{.ShortDate}}-{{.OtherSinger}}-{{.SongTitle}}-{{.VideoNumber}}.mp4" youtube-dl -o "{{.OtherSinger}}\{{.ShortDate}}-{{.OtherSinger}}-{{.SongTitle}}-{{.VideoNumber}}.mp4" {{.VideoURL}}
|
|
{{ end }}
|