I'm using pygame.midi library to send MIDI Messages (Control Change messages, not notes). The idea is to send from the output (from this python program) to the input of another program.
>>> import time
>>> import pygame.midi as midi
>>> midiout = midi.Output(3)
>>> midi.init()
>>> midiout = midi.Output(3)
>>> midiout.write_short(0x74,124,0)
PortMidi call failed...
PortMidi: `Invalid MIDI message Data'
type ENTER...
As you can see, i'm sending 0x74,124,0. I'm taking those numbers from rakarrack (the application that i want to control) implementation chart: http://rakarrack.sourceforge.net/midiic.html
What am I doing wrong?