I like to save the biab songs as midi files with chord names as lyrics so I can play them by my Yamaha keyboard. When I use the option "Save special, midi file, write lyrics in GM format", those midi files will play by Yamaha but no lyrics in the display. I want to read the chord names with each bar.
I looked to the forum but couldn't find a topic about this.
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
Yes. Left top corner: file/save special/ save song as midi file/ etc. Is that not the right way? But the lyrics (chord names) are not on the Yamaha display. I understand it should work. How?
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
Guess a karaoke midi expert here should be able to tell you more. You can export the chords ad midi data on a track (number 9?) as option somewhere, but lyrics?
Did you enter the chord names as lyrics in your BIAB file, or were you expecting BIAB to do that for you? I don't believe it currently does. Also, there is currently no MIDI standard for chord name designations, so the chords from the chord grid does not get exported out of BIAB into a MIDI file.
The setting you selected, "Write Lyrics in General MIDI Format" is used strictly to either save lyrics in the standard MIDI format or in the older proprietary PGMusic format (not really used anymore). It has nothing to do with the song chords (unless, of course, you have manually entered them as lyrics on the lyric line.
John
Laptop-HP Omen I7 Win11Pro 32GB 12TB SSD Desktop-ASUS-I7 Win10Pro 32GB 12TB SATA
As far as I'm aware, chords from the BIAB chord sheet cannot be automatically converted to lyrics and saved in a midi file.
I'll investigate this further but it's not an option that I remember seeing (not that that means it's not available).
It would certainly be possible to enter the chord symbols in the lyric line manually and this would only take about 10 or 15 minutes for most songs. It's not a challenging process.
What did you read that led you to the conclusion that "I understand this should work"? If I know this, it might help me solve the problem.
Thanks everyone for your feedback. I think I am wrong about it should be possible to save the chords grid in midi files as lyrics. I will try to enter the chord names as lyrics. I am not using a melody part in my songs. Just bass, drums and piano. Is that a problem to create lyrics?
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
Thanks everyone for your feedback. I think I am wrong about it should be possible to save the chords grid in midi files as lyrics. I will try to enter the chord names as lyrics. I am not using a melody part in my songs. Just bass, drums and piano. Is that a problem to create lyrics?
No, not at all.
In version 2018 (Windows) of BIAB...
1. go into Editable Notation Mode
2. right-click on the staff where you'd like to add the chord
I inserted the lyrics. I can see them on top of the bars. I saved the song with midi format 1/0/KAR. None of the midi files are showing the lyrics on my Yamaha. I can't find in the Biab Help what I do wrong.
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
I think I found a solution or work around. When I insert the lyrics as Section Text this will be displayed on my Yamaha on the bass clef. In lyrics mode too but there is no space between the chord names. But I am happy for now. I will work on it, but not tonight. It is late in the evening.
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
Jan, I think you just discovered an excellent workaround for getting the chords in a midi file, write them as lyrics. I know I never would have thought of that because I don't sing, I ignore anything to do with lyrics. Good job!
Does the Yamaha show Midi Markers ? In RealBand you can insert Markers in the Midi file (still waiting for that request "Chords to Midi Markers").
Biab exports the chords in MusicXML as Notation Events, if you drag a musicxml file into Reaper, split it to separate tracks then open a track in the midi editor by double clicking it, down the bottom where the velocity lane is, add a Notation Events lane and you will see the chords. You can copy the chords from the Notation Events lane to the Text Events lane, then save the track to midi and import back into Biab or do it all in Reaper. See how you go with that, I could probably put a script together for you to copy Notation Events to Text Events in Reaper.
You could also Opt > Prefs > Chord Output > Save in Midi file Save As Special ABC > Chords only then http://www.pgmusic.com/forums/ubbthreads.php?ubb=showflat&Number=372872 choose the BB Chord Output to sync the lyrics (ABC Chords, clean the text up wordpad to remove the characters you don't need). You can also get chords from the big lyric window Print > Copy to clipboard, you just need to add 1 lyric in the track to get it to copy the chords. This will insert the chords as lyrics where the chord changes occur in the BB Chord Output track. But hey, it should just do all this in BB/RB.
In Reaper Menu > Actions > Show Action List > Reascript > New copy and paste code below, select a track from the imported musicxml in the Reascript window > Ctrl+S to save and run script close script window to run the script next time just type the name you save it to in the filter box in the midi editor File > Export to New MIDI file Biab File > Import > Import Melody from MIDI file. You can also import the Midi from Biab into Reaper and copy the BB Chord Track Midi notes to any one of the musicxml track replacing the existing notes, this will give you a BB Chord Track as well as Chord Lyrics.
Code:
reaper.Undo_BeginBlock2(0)
reaper.Main_OnCommand(40421,0) --Item: Select all items in track 40421
reaper.Main_OnCommand(40153,0) --Item: Open in built-in MIDI editor (set default behavior in preferences) 40153
take = reaper.MIDIEditor_GetTake(reaper.MIDIEditor_GetActive())
reaper.MIDI_Sort(take)
MIDIOK, MIDI = reaper.MIDI_GetAllEvts(take, "")
tChords = {}
stringPos, ticks = 1, 0
while stringPos < MIDI:len() do
offset, flags, msg, stringPos = string.unpack("i4Bs4", MIDI, stringPos)
ticks = ticks + offset
if msg:byte(1) == 0xFF then
chord = msg:match("text (.+)")
if chord then
tChords[#tChords+1] = {chord = chord, ticks = ticks}
end
end
end
for i = 1, #tChords-1 do
reaper.MIDI_InsertTextSysexEvt(take, true, false, tChords[i].ticks, 5, tChords[i].chord)
end
reaper.Undo_EndBlock2(0, "Convert Notation Event Text to Text Events", -1)
Or in Karakan select the BB Chord Output track, (you can add bar numbers or bar characters with the chords, just join them so there are no spaces \1.|Bm|\2. \3.|Em|\4. or |Bm///|//// |Em///|//// or ??? )
Thanks Pipeline, but sorry this is too much information for me. I like to do it in BB only. Or is that not possible? Can you please mention again the steps to follow just by simple instructions. ----------- Update: I discovered MixMaster. Easy tool to edit midi files. I can add Chord Names and Text Events. The midi files saved in BB and loaded into MixMaster do not contain text or chord names. I will try this tool and hope I can see the chord names as lyrics on my yamaha piano.
Last edited by Jan Ronday; 02/27/1801:41 PM.
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
That MixMaster looks good and it's donationware. But it will take a lot longer than the other to methods. I think the easiest way right now is save the midi file and save to ABC.
3. Biab > File > Save Special > Save Song as ABC Notation
4. Drag ABC file into NotePad
5. Notepad > Edit > Replace > copy the characters you don't need and paste in "Find What" and in "Replace With" leave blank to remove or add new character to replace with. If your chords have numbers in them find 7 replace with \7 6. Open Karakan > open the midi saved from Biab > Select Voice track > BB Chord Output.
7. Copy and paste the chords from notepad into Karakan > Play Karakan
8. Karakan menu > Karaoke > Save to MIDI file with Lyrics
Thanks Pipeline. You spend a lot of time to help me, and other members I guess. I will try this today. A real challenge. ------------------- Update: it works. The only issue is that because of the 2-bar lead in the lyrics (chord names) and score is not in sync during playing on the Yamaha. It is in sync with the Karakan tool. But I will figure out that.
Thank you. I am very pleased.
Last edited by Jan Ronday; 02/28/1801:12 AM.
Thanks, Jan R.
piano: Hammond Skx Pro guitar: Ibanez LGB30 guitar amp: Boss Katana 50 MKII
I saved a bb song to mid in Biab with Options > Prefs > Chord Output Open midi in PSRUTI Compute Chords, choose BB Chord Output channel and Save as text Chords/Lyrics Import/Export > Import the exported text as lyrics Save As midi file.
If you Output Chords during Lead In you will get the chords on bar -1 and 0 Or Midi Option uncheck Include 2 bar lead-in
XPro & Xtra Styles PAK Sets On Sale Now - Until May 15, 2026!
All of our XPro Styles PAKs and Xtra Styles PAKs are on sale until May 15th, 2026!
It's the perfect time to expand your Band-in-a-Box® style library with XPro and Xtra Styles PAKs. These additional styles for Band-in-a-Box® offer a wide range of genres designed to fit seamlessly into your projects. Each style is professionally arranged and mixed, helping enhance your songs while saving you time.
What are XPro Styles and Xtra Styles PAKs?
XPro Styles PAKs are styles that work with any version (Pro, MegaPAK, UltraPAK, UltraPAK+, or Audiophile Edition) of Band-in-a-Box® 2025 (or higher). XPro Styles PAKS 1-10 includes 1,000 styles!
Xtra Styles PAKs are styles that work with the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box® 2025 (or higher). Xtra Styles PAKs 1-21 includes 3,700 styles (and 35 MIDI styles)!
The XPro & Xtra Styles PAKs are not included in any Band-in-a-Box® package.
The XPro Styles PAKs 1-10 are available for only $29 ea (reg. $49 ea), or get them all in the XPro Styles PAK Bundle for only $149 (reg. $299)! Listen to demos and order now! For Mac or for Windows.
The Xtra Styles PAKs 1-21 are available for only $29 ea (reg. $49 ea), or get them all in the Xtra Styles PAK Bundle for only $199 (reg. $349)! Listen to demos and order now! For Mac or for Windows.
Note: XPro Styles PAKs require Band-in-a-Box® 2025 or higher and are compatible with ANY package, including the Pro, MegaPAK, UltraPAK, UltraPAK+, and Audiophile Edition.
The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 19 requires the 2025 or higher UltraPAK, UltraPAK+, or Audiophile Edition. They will not work with the Pro or MegaPAK version as they require the RealTracks included in the UltraPAK, UltraPAK+, or Audiophile Edition.
Supercharge your Band-in-a-Box today with XPro Styles PAKs and Xtra Styles PAK Sets!
With the release of Band-in-a-Box® 2026 for Mac, we’re rolling out a collection of brand-new videos on our YouTube channel. We’ll keep this forum post updated so you can easily find all the latest videos in one convenient spot.
Whether you're exploring new features, checking out the latest RealTracks or Style PAKs, this is your go-to guide for Band-in-a-Box® 2026.
Band-in-a-Box® 2026 for Mac is here and it is packed with major new features! There’s a new modern look, a GUI redesign to all areas of the program including toolbars, windows, workflow and more. There’s a Multi-view layout for organizing multiple windows. A standout addition is the powerful AI-Notes feature, which uses AI neural-net technology to transcribe polyphonic audio into MIDI—entire mixes or individual instruments—making it easy to study, view, and play parts from any song. And that’s just the beginning—there are over 100 new features in this exciting release.
Along with version 2026, we've released an incredible lineup of new content! There's 202 new RealTracks, brand-new RealStyles, MIDI SuperTracks, Instrumental Studies, “Songs with Vocals” Artist Performance Sets, Playable RealTracks Set 5, two new RealDrums Stems sets, XPro Styles PAK 10, Xtra Styles PAK 21, and much more!
Special Offers
Upgrade to Band-in-a-Box® 2026 for Mac and save up to 50% on most upgrade packages during our special offer—available until May 15, 2026. Visit our Band-in-a-Box® packages page to explore all available upgrade options.
2026 Free Bonus PAK & 49-PAK Add-ons
Our Free Bonus PAK and 49-PAK are loaded with amazing add-ons! The Free Bonus PAK is included with most Band-in-a-Box® 2026 for Mac packages, but you can unlock even more—including 20 unreleased RealTracks—by upgrading to the 2026 49-PAK for just $49.
Band-in-a-Box® 2025 for Mac® users: Build 904 now available!
If you're already using Band-in-a-Box® 2025 for Mac®, make sure to grab the latest update! Build 904 is now available for download and includes the newest additions and enhancements from our team.
One of our representatives will be happy to help you over the phone. Our hours of operation are from
6:00AM to 6:00PM PST (GMT -8) Monday thru Friday, and 8:00AM to 4:00PM PST Saturday. We are closed Sunday. You can also send us your questions via email.
One of our representatives will be happy to help you on our Live Chat or by email. Our hours of operation are from
6:00AM to 6:00PM PST (GMT -8) Monday thru Friday; 8:00AM to 4:00PM PST (GMT -8) Saturday; Closed Sunday.