couldn't get in pogoshell
heres my bash script using sox to convert mp3s to wav and then open the converter
#!/bin/bash
for file in "$@"; do
output="${file%.*}.wav"
sox "$file" -r 22050 -c 1 -e gsm-full-rate "$output"
wine "ps2gsm_linker.exe"
done
No comments:
Post a Comment