Article History
 
 
 
Discussion
 
16228 views
 
46% damifortune
midi (format)
 

MSGS MIDI
 

 

 
Token:
midi
 
Point Type:
 
File Types:
 
Max Filesize:
1,024kb
 
Description:
MIDI file made by using the Microsoft GS Wavetable SW Synth (MSGS)!
::|CONTENTS
  1. Tools for creation
  2. Format info
  3. Composing for MSGS MIDI
  4. GS Extension
  5. Other useful SysEx
  6. Restrictions on submit
  7. Playback (for voting)
  8. Render to MP3
  9. See also
Generally speaking, MIDI (Musical Instrument Digital Interface) is a protocol that allows multiple electronic instruments and musical devices to communicate and synchronize with themselves. Though MIDI was first invented in the early 1980s as synthesizers grew into a burgeoning industry, the General MIDI spec was defined in 1991 and is still frequently adhered to today! A composition saved as a MIDI is a sequence of notes and commands that will be played back by the computer's own MIDI drivers. Since this makes a .mid file much smaller than an audio file, MIDI files have a rich history of use in computer games, software, and websites.

This article, though, is about the MIDI BotB format, which is for a specific and iconic implementation, MSGS MIDI - the Microsoft GS Wavetable Synth, infamous for coming bundled with Windows since time immemorial (i.e. 1996
). If you have spent much time around computers in the last 20-something years, you will probably be familiar with some of these sounds. They are what you hear if you open a .mid file in Windows Media Player. They are also closely related, though not identical, to Roland's SC-55 sound module.


Tools for creation



Anything that can sequence MIDI notes and (optionally yet preferably) pipe the results to a MIDI output for testing will suffice. This includes most DAWs such as REAPER
(which is not free but can be evaluated indefinitely), Logic, FL Studio, and Cubase. Many standalone applications have also been created over the years to work with MIDI, such as Cakewalk and (more recently) Sekaiju
and Domino
. Although piano roll interfaces reign supreme in the realm of MIDI, OpenMPT
can be used for this format, and a unique tracker by BotB's own Jangler called Faunatone
(offering optional microtonal support) can be utilized. Notation software like Finale, Sibelius or MuseScore
(which is free) can also be utilized.

If you're not sure where to start, some of the most highly recommended free options are Reaper (which is also a full-fledged DAW), Sekaiju and Domino. More tools are listed at the bottom of the article!

For REAPER users, a template
has been created by DEFENSE MECHANISM. Note that it is best to use this with a VST such as BassMidiVST
and an MSGS soundfont to avoid the inherent latency when routing to MSGS directly. A tutorial video on using this template can be found here
.

For FL Studio users, here is a template
(created by BlueNoc, some edits by damifortune). FL has its own plugin implementation named "Fruity LSD" that this template is set up with. Make sure not to use Fruity LSD's "reverb" and "chorus" options; these are not supported by the format and won't appear in your exported MIDI file. Also, patches are best controlled through the MIDI Out channels' "Patch list" rather than LSD itself. Otherwise patch info may not export properly.


Format info



Overview
MSGS MIDI uses 16 channels of sound, with channel 10 being reserved for drums. 128 melodic patches exist, as well as 9 different drumkits. Some of the melodic patches also have variants; read more about this in the "GS Extension" section below. The sound is noticeably raw and free of any DSP effects such as reverb, chorus, distortion etc (unlike our other formats XG and MT-32).

The maximum note polyphony of contemporary MSGS is 32, although it used to be 64 during the Windows XP days. No one is sure why this was nerfed! FL Studio's Fruity LSD is one useful way to avoid the newer limit, if you own that software. Otherwise a virtual machine may be helpful. With the exception of drums, MSGS's note priority system favors the earliest channel number, so if you're brushing up against the limit, you will want the most important information in Channel 1, then Channel 2, etc.


Changing Patches
The selected patch for a MIDI channel can be changed using a "Program Change" event. You aren't locked into the patch for the whole song!


Changing Parameters: Control Changes (CCs)
On each channel, several standard MIDI parameters can be controlled: Volume, Panning, Pitch (used for detuning, pitch bends, or "portamento"), Expression (a fraction of volume), and Modulation depth (auto-vibrato). Individual notes also have a "velocity" parameter which sets the note's loudness.

Most programs have already implemented most or all of these parameters within their interface, but you may need to send/automate a piece of data known as a "Control Change" (CC for short) to set or alter some of them (such as Modulation or Expression). CCs are simply a value between 0 and 127 that control a specific parameter. Consult with your software's manual on how to set up MIDI CCs if necessary!

In MSGS, only a few CCs are utilized:
* CC#1 - Modulation - controls auto-vibrato for the channel. In MSGS, the vibrato triggers at different times depending on the patch. If you want finer control over the vibrato speeds, you'll have to use Channel Pitch.
* CC#7 - Channel Volume
* CC#10 - Channel Panning (0 = all the way left, 127 = all the way right)
* CC#11 - Expression
(Notably, channel pitch is separate and not a CC.)


Advanced CCs
Pitch Bend Range can also be controlled per channel via a slightly more elaborate CC setup. Set both CC#100 and CC#101 to 0, then use CC#6 to control the pitch bend range; values 0-48 correspond to maximum semitones, with the default being 12 (one octave). MSGS responds to pitch events up to +/- 1200 cents, which is normally also one octave. This setting alters how a "cent" is interpreted by the synth, meaning -100 (down a semitone) will no longer be down a semitone, but potentially more (if CC#6 > 12) or less (if CC#6 < 12). A range of +/- 4 octaves (aka 48 semitones) is achievable using this CC combo. You can use values greater than 48 for CC#6 but they will reduce the available granularity of pitch while not actually increasing the range any further. CC#6 = 127, for example, causes the full range to be maximized in less than +/- 500 cents.

Similarly to the Pitch Bend Range settings, if CC#100 is set to 1 instead of 0, fine-tune can be controlled for the channel. A value of CC#6 = 64 is normal tuning; lower goes down to a maximum of 1 semitone and higher, conversely, goes up. If CC#100 is set to 2, the base note can be altered. A value of CC#6 = 64 is once again default, 63 is down one semitone, etc. Is that useful? You decide!


Composing for MSGS MIDI



Though its sound is often regarded as flat and unexciting, some traditions have emerged for getting the most out of the MSGS sound set and its virtually nonexistent access to DSP effects.

* One common technique is to utilize a second or even third channel that contains duplicate note information from another channel, but offset by a small length of time. This is called a "delay channel" because it is a basic simulation of a "delay" effect plugin. Most of the time, the delay channel will be at a much softer volume, and potentially it can be panned towards the left or right to give a fuller stereo image. Delay channels are also fairly easy to use within MSGS's channel and polyphony limits, though overuse will still result in overshooting the polyphony limit anyway, especially with chords or arpeggios.

* Similarly to delay channels, additional "cloned" channels containing the same notes can be used to create a chorusing effect by slightly altering the Channel Pitch of the cloned channels (and likely turning their volumes down). Try two duplicate channels tuned at -10 and +10 cents for example. Instrument doublings are also helpful towards beefing up a sound.

* In a similar ethos to other chiptune formats, strong and judicious use of vibrato can also go a long way towards breathing life into these sounds. MIDI CC#1 (Modulation depth), which controls auto-vibrato for a given channel, is useful in this regard, but frequent use of the "Channel Pitch" setting for additional vibrato control is highly recommended as well. Don't forget that you can do the same with Channel Volume and Channel Panning to create "tremolo" effects (possibly useful on guitar patches)!

* Something to keep in mind: If you try to trigger the same note that's already playing in a channel (like playing a C5 over the top of an existing C5 in the same channel), the previous instance of the note will immediately cut off. This behavior also means that a note of velocity 1 can immediately stop a note from playing - even killing its release envelope, if it would have one. (This behavior is unfortunately not modeled in most Soundfont players.)

* Don't shy away from using the alternate drumkits - even though there's lots to work with in the Standard drumkit already, the other kits make various changes to the "drumset" portion of the instruments which may suit your style a little more. Notably, there is a TR-808 kit, an SFX-only kit, an Orchestra kit which includes a range of timpani notes, and a Power kit with a beefier snare. Check them out! Change channel 10's patch number as indicated here. Additionally, don't be afraid to try Channel Pitch on the drum channel!

* If you're bored with how the patches sound out of the box, see if you can get any new/cool sounds out of them by playing them very high, very low, with rapidfire notes (think blast-beats), or with extremely short notes. You may find new textures that you enjoy! Additionally, switching through Program Changes quickly - i.e. changing the patch over and over - may produce interesting sounds when used in a controlled manner.


GS Extension



Since Microsoft GS Wavetable Synth is a stripped-down Roland Sound Canvas SC-55, it has a support for GS extension instrument variations, accessible by changing the Bank number ("coarse") associated with a MIDI channel (check the link below for that info). However, it's disabled by default and won't respond to those extension events at all unless you tell it to. In order to make it respond to GS extensions, you need to send a "GS Reset" SysEx message, which is:
F0 41 10 42 12 40 00 7F 00 41 F7

Some MIDI editors such as Domino will automatically do this after you create a new file that targets this system; if yours doesn't, you will have to add this SysEx message to the beginning of your MIDI. This is easy to accomplish in Sekaiju - open the Event List Window, insert a new event at the beginning of the type "SysEx (Normal)", then type the above message into the box and re-save your MIDI.

For FL Studio users - FL doesn't support SysEx messages at all, so you will have to add the GS Reset message using other software after exporting your MIDI. This is in spite of the fact that GS extension instruments are accessible with Fruity LSD. Your exported MIDI won't contain the GS Reset required to hear them in any other software. Be careful!

Here is the list of instruments you could use after enabling the extension, as well as the required changes to the Bank numbers for each patch!


Other useful SysEx



In addition to the above mentioned GS Reset, there are some other SysEx messages you may find useful in this format. SysEx, by the way, is short for "System Exclusive" and is a way to send specialized commands to MIDI synths in the form of several hex values. Some are fairly universal, while most are specific to the synth, hence the name.

GM Reset: F0 7E 7F 09 01 F7
* Disables GS instrument mode.

Master volume: F0 7F 7F 04 01 7F xx F7
* Controls overall volume of the MIDI.
* xx can be 00-7F, with 7F being max volume and 3F being middle.

Drum Add: F0 41 10 42 12 40 xx 15 01 yy F7
* Toggles drum mode for other channels besides ch10.
* Program Changes can be used to select the desired drumkit, just like you would on ch10.
* xx points to the desired channel, with values 11-1F corresponding to channels 1-16, except ch10=10 (so ch9=19, ch11=1A, etc).
* Testing seems to show that yy can be whatever for this format, but examining existing MIDI messages indicates they should also follow a pattern: decreasing from 1A as the channels increase from 1-16.
* To toggle back to regular mode, send a similar SysEx message that swaps the "01" before yy to "00".


Restrictions on submit



The filetype for this format is .mid or much more rarely .midi. All MIDIs must be 1MB or less in size and must utilize only the sounds of the Microsoft GS Wavetable Synth. Otherwise, there are no extraneous restrictions to the format, which means you're free to create whatever with the patches provided by the GS Wavetable so long as it fits within the file size limit.

If you normally do not have access to render to MSGS, please use this SF2 soundfont
with your media player.


Playback (for voting)



A variety of tools exist for the sake of MIDI playback, though some of the preferred programs for playback include, but are not limited to:
- Windows Media Player
- Falcosoft Midi Player (FSMP)
(very feature-rich, supports hardware out ports, hosts VSTi, supports multiple SoundFont banks, capable of recording directly to disk, runs in Wine)
- Winamp

- TMIDI Player


Some other cross-platform options include:
- FluidSynth

- TiMidity++


FSMP, FluidSynth and TiMidity++ can be configured to use SF2 soundfonts, including the MSGS soundfont linked above.


Render to MP3



If your DAW supports direct playback of the GS Wavetable within the DAW (as in you connected to "Microsoft GS Wavetable Synth" in your software), you can do a render of your entry simply by exporting to MP3. FSMP, FluidSynth and TiMidity++ also have options for rendering to a .wav file.

In other cases, a Stereo Mix recording of the MIDI (perhaps through Audacity) will also suffice, so long as the MIDI in question can be played with as little issues (read: few to no dropped notes) as possible. If you're on Windows, a great way to test out your MIDI is Windows Media Player.


See also



- MIDI
- Specification of General MIDI and Roland MT-32 patches
- mt32 (format)
- xg (format)
- Domino
- midicsv
(converts midi to csv and back, command-line based)
- GS SysEx Info
- most of this doesn't apply to the MSGS format but you may find this arcane knowledge useful, especially if you own a GS synth of some kind

More thorough tools list:
- REAPER

- Sekaiju

- Domino

- OpenMPT

- Faunatone
(microtonal support)
- Aria Maestosa

- MuseScore

- Rosegarden

- LMMS

- Ardour

- Cubase

- FL Studio

- Digital Performer

- JAZZ

- Anvil Studio

- (Android) Perfect Piano
(saves in midi format, has a virtual piano keyboard, MIDI/USB controllers can be used)
- (Android) Maestro
(notation software, saves midi format)

 
C A T E G O R I E S
 
 
Battle Formats