Created
August 20, 2022 08:40
-
-
Save darallium/66a1bd85f69362587a6c14baa949ba21 to your computer and use it in GitHub Desktop.
youtube-dlのbatファイルです。動画の音声データをダウンロードして、ミュージック以下にチャンネル名で自動で振り分けます。
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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