Arduino MIDI shield problem

I am currently using the DFRobot MIDI shield on an Arduino Uno for a school project. Currently, I am just getting the example code to work found here:
https://wiki.dfrobot.com/Midi_shield__SKU_DFR0157_
Currently, the only thing changed in the code are lines 123-125 as BYTE is now outdated.
Changed portion:
Serial.write( byte(cmd) );
Serial.write( byte(data1) );
Serial.write( byte(data2) );
I am connecting a standard Keyboard(piano) to the MIDI_IN of the shield. From the looks of the code, with MIDI input, it should print the cmd (mostly filled with NoteOn and NoteOff commands), as well as the 2 data numbers. Right now, once I switch the shield over to RUN (instead of PROG) and reset, it I get giberish. I am almost for certain this is because of the Baud Rate. I am on Windows 7, I cannot change the baud rate of the serial monitor to anything close to 31250 (MIDI baud rate).
My question is, does anyone know of a way, in arduino, to add more baud rates to the serial monitor. I don't really want to use 3rd party software although I may need too. I do have a linux box so if there is a way to do it on linux that would be okay too.(although I would prefer windows as all of my material is already on the windows machine).
But considering that the Arduino IDE is open source. So it's should be available to add this feature based on the source code of the Arduino IDE.

Best
Lauren
