Onechoir
From Wiki2
onechoir
verdi requiem
https://files.parleyvale.com/browse/files/chorus/requiem
from windows command prompt
to make mp4's from youtube
mcken@VIVO C:\Users\mcken\OneDrive\chorus\requiem $ yt-dlp --remux-video mp4 "https://www.youtube.com/watch?v=ydEaYp2KFV0"
to make mp3's from playlist
mcken@VIVO C:\Users\mcken\OneDrive\chorus\requiem\mp3 $ yt-dlp -x --audio-format mp3 -o "%(playlist_index)s - %(title)s.%(ext)s" "https://www.youtube.com/watch?v=8oCBEOWmsCs&list=PLAXzt8xJtxUk"
What does -o do? The -o flag sets the output filename. Using %(playlist_index)s - %(title)s tells it to number the MP3 files in the exact order they appear in the YouTube playlist (e.g., 01 - Song Name.mp3), keeping your album or tracklist perfectly organized.