Skip to content

Instantly share code, notes, and snippets.

@darallium
Created August 20, 2022 08:40
Show Gist options
  • Select an option

  • Save darallium/66a1bd85f69362587a6c14baa949ba21 to your computer and use it in GitHub Desktop.

Select an option

Save darallium/66a1bd85f69362587a6c14baa949ba21 to your computer and use it in GitHub Desktop.
youtube-dlのbatファイルです。動画の音声データをダウンロードして、ミュージック以下にチャンネル名で自動で振り分けます。
setlocal enabledelayedexpansion
set /P URL=
yt-dlp "!URL!" -f "bestaudio" --audio-format mp3 --audio-quality 0 -x ^
--parse-metadata "playlist_index:%%(track_number)s" ^
--ignore-errors ^
--embed-metadata ^
--embed-thumbnail ^
--embed-chapters ^
-o "%USERPROFILE%\Music\%%(channel)s\%%(title)s.%%(ext)s"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment