6 lines
314 B
Batchfile
6 lines
314 B
Batchfile
|
@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 }}
|