You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When using a Youtube Playlist as imput Source UltraSinger recognises the Songs in the Playlist but names the Output Folder and Files after the Playlist name and not by the individual Video Titles from the Youtube Videos.
The text was updated successfully, but these errors were encountered:
:: Path to Musescore installation https://musescore.org/de/download
set "MUSESCORE_PATH=C:\Program Files\MuseScore 4\bin\MuseScore4.exe"
:: Output Folder Directory - For Example Songsfolder in UltraStar https://usdx.eu/downloads/
set "OUTPUT_PATH=C:\Program Files (x86)\UltraStar Deluxe\songs"
:: get the YouTube-Playlist-URL from the User
set /p PLAYLIST_URL="Enter YouTube-Playlist-URL: "
:: Python-Script to extract the Videos from the Playlist and generate a Playlist file.
%PYTHON_PATH% -c "from pytube import Playlist; playlist = Playlist('%PLAYLIST_URL%'); print('\n'.join(playlist.video_urls))" > playlist_urls.txt
:: Batch process all videos from the Youtube Playlist
for /f "tokens=*" %%a in (playlist_urls.txt) do (
echo Verarbeite: %%a
%PYTHON_PATH% "%ULTRASINGER_PATH%" -i "%%a" -o "%OUTPUT_PATH%" -m --crepe full --hyphenation True --format_version 1.1.0 --force_cpu True --musescore_path "%MUSESCORE_PATH%"
)
When using a Youtube Playlist as imput Source UltraSinger recognises the Songs in the Playlist but names the Output Folder and Files after the Playlist name and not by the individual Video Titles from the Youtube Videos.
The text was updated successfully, but these errors were encountered: