29 lines
1022 B
Batchfile
29 lines
1022 B
Batchfile
@echo off
|
|
echo Convert MP3 files to OGG (preferred) for cross-platform playback...
|
|
echo.
|
|
|
|
REM Check if we have access to Windows Media Format SDK
|
|
set MUSIC_DIR=assets\music
|
|
|
|
REM List of MP3 files to convert
|
|
set FILES=amazing.mp3 boom_tetris.mp3 great_move.mp3 impressive.mp3 keep_that_ryhtm.mp3 lets_go.mp3 nice_combo.mp3 smooth_clear.mp3 triple_strike.mp3 well_played.mp3 wonderful.mp3 you_fire.mp3 you_re_unstoppable.mp3 hard_drop_001.mp3 new_level.mp3
|
|
|
|
echo Please convert these MP3 files to OGG Vorbis manually (or run convert_to_ogg.ps1 on Windows):
|
|
echo.
|
|
for %%f in (%FILES%) do (
|
|
echo - %MUSIC_DIR%\%%f
|
|
)
|
|
|
|
echo.
|
|
echo Recommended settings for conversion:
|
|
echo - Sample Rate: 44100 Hz
|
|
echo - Channels: Stereo (2)
|
|
echo - Use OGG Vorbis quality ~4 (or convert to FLAC if you prefer lossless)
|
|
echo.
|
|
echo You can use:
|
|
echo - Audacity (free): https://www.audacityteam.org/
|
|
echo - VLC Media Player (free): Media ^> Convert/Save
|
|
echo - ffmpeg (CLI): ffmpeg -i input.mp3 -c:a libvorbis -qscale:a 4 output.ogg
|
|
echo.
|
|
pause
|