File all_notes_off of Package alsa
xxxxxxxxxx
1
#!/bin/bash
2
#
3
# Send an "all notes off" event to all channels of all
4
# MIDI-Devices configured in the System
5
#
6
# Written by Matthias Nagorni, (c) 2001 SuSE GmbH Nuremberg
7
# (c) 2014 SUSE Linux Products GmbH
8
#
9
for d in /dev/snd/midiC?D?; do
10
echo Sending "all notes off" to MIDI device $d
11
cat /usr/lib/all_notes_off.bin > $d
12
done
13
if [ -x /usr/bin/pmidi ]; then
14
echo Can execute pmidi. Fine.
15
plist=$(pmidi -l)
16
for p in $plist; do
17
p1=${p%:0}
18
if [ "$p1" != "$p" ] && [ $p1 -gt 16 ]; then
19
echo Sending "all notes off" to MIDI port $p
20
pmidi -p $p -d 0 /usr/lib/all_notes_off.mid
21
fi
22
done
23
fi
24