💾 Archived View for xoc3.io › blog › 2021-09-02 captured on 2023-01-29 at 03:04:55. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-04-28)

-=-=-=-=-=-=-

back to xoc3.io

2021-09-02 - play midi on linux

i've been doing more midi related things lately. here is how i play midi on linux.

audio group. ensure your user is a part of the audio group first. to add yourself to that group, run usermod:

usermod -a -G audio $USER

install a soundfont. the only soundfont file format i'm aware of is the `.sf2` format. you can try random .sf2 files from online, but i like freepats the most.

freepats homepage

freepats arch package

install timidity++. timidity++ is used to emulate midi hardware.

arch timidity++ package

update timidity++ config. once timidity is installed, add your .sf2 file path to the timidity config file:

echo soundfont /usr/share/soundfonts/freepats-general-midi.sf2 >> /etc/timidity/timidity.cfg

install alsa-utils. midi hardware support is actually built into the linux kernel, but we need a binary the alsa project maintains that interacts with the built in midi support:

arch alsa-utils package

emulate midi hardware. this command tells timidity to act as midi hardware for alsa:

timidity -iA

play midi. use the alsa utility to connect to the emulated hardware and play the midi file.

aplaymidi -l # prints the available midi ports
aplaymidi -p 128:0 midifile.mid # 128:0 is a midi port, use the output from aplaymidi -l to figure this out

if you have a midi output device, you can actually skip most of these steps and just run aplaymidi!

some links that helped me understand this process:

arch midi guide

arch timidity guide

ted's midi guide