Guest deathwarrior Posted April 18, 2001 is there something that converts .mid to .mus, but can handle midi's over 67kb? midi2mus can't seem to manage them. 0 Share this post Link to post
loser Posted April 18, 2001 I believe MIDI2MUS is the only one. However, the problem is with the .MUS format itself, not the converter. Take a look at this: struct MUSheader { char ID[4]; // identifier "MUS" 0x1A WORD scoreLen; The "scoreLen" is the length of the songs data in bytes. Since it's a 16 bit value, MUS format can only store songs that are smaller than 64K. To use those MIDI files are MUS, you will have to reduce the MIDI's size (cut some parts or channels out). 0 Share this post Link to post
NiGHTMARE Posted April 18, 2001 Pretty much anything except the original .exe's can handle actual MIDI files nowadays. Just import them like you would a data lump. 0 Share this post Link to post
Guest deathwarrior Posted April 18, 2001 loser said:I believe MIDI2MUS is the only one. However, the problem is with the .MUS format itself, not the converter. Take a look at this: struct MUSheader { char ID[4]; // identifier "MUS" 0x1A WORD scoreLen; The "scoreLen" is the length of the songs data in bytes. Since it's a 16 bit value, MUS format can only store songs that are smaller than 64K. To use those MIDI files are MUS, you will have to reduce the MIDI's size (cut some parts or channels out). strange... i converted a midi that was 67kb to a mus with MIDI2MUS. 0 Share this post Link to post
Guest deathwarrior Posted April 18, 2001 it comes up with this when i do a 70kb midi in MIDI2MUS: Format: 1 Tracks: 10 QTicks: 48 10 Tracks Read Converting Music ERROR: MUS Buffer full. 0 Share this post Link to post
Recommended Posts