Ubuntu – Select on track of a midi file for playing with timidity

midi

$ timidity file.mid

Recognizes the 4 tracks of my midi file:

Track name: soprano
Track name: alto
Track name: tenor
Track name: bass

Timidity plays them all at the same time. Is it also possible to play only one or two tracks at the same time?
I checked the man page, but I could not find such an option.

Best Answer

You should look at the -Q option.

For example, the format -Q 0,-3 would mute all channels, but not the number 3.

Related Question