This file contains 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
:: This script runs the DOS program GMIDI, which can be found here: | |
:: https://df-21.net/downloads/utilities/gmidi05b/gmidi05b.zip | |
:: Put this script and all the GMDs in the GMIDI directory | |
:: If using DOSBox, put MOVE.EXE from FreeDOS in the GMIDI directory, which can be found here: | |
:: https://www.ibiblio.org/pub/micro/pc-stuff/freedos/files/repositories/1.3/base/move.zip | |
:: Run this script from the GMIDI directory | |
@ECHO OFF | |
mkdir TXTBAK |
This file contains 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
#!/bin/bash | |
for i in $(ls *.smp) | |
do | |
tail -c +161 $i > "$i.ogg" | |
done | |
mkdir vorbis | |
mv *.ogg vorbis |