Previous Thread
Index
Next Thread
Print Thread
Go To
Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Reaper will import BiabXML and show the chords in the notation.
It will also export it to PDF, xml or mid.

It does what the BB chord window needs, zooms when you Ctrl+scroll mouse wheel.

https://www.dropbox.com/s/5zt86fiedse6qts/Reaper-Notation.gif?dl=0
https://www.dropbox.com/s/5zt86fiedse6qts/Reaper-Notation.gif?dl=1

Just drag n drop the xml in.

You can also copy the chords to Reaper's Regions or Markers, or in another post to lyrics http://www.pgmusic.com/forums/ubbthreads.php?ubb=showflat&Number=458770#Post458770

If you save BB to midi as well you will get the A B part Markers (set in Biab Midi Options) in Reaper, just drag n drop the midi in after the xml and import Markers.

You can get reascales to load into Reaper to give scale or chords to snap to.




Attached Files (Click to download or enlarge) (Only available when you are logged in)
Reaper-XML-Notation.png (189.69 KB, 147 downloads)
Reaper-Reascale.png (53.71 KB, 148 downloads)
Post your own Tips and Tricks here
Joined: Jul 2000
Posts: 26,948
Veteran
Offline
Veteran
Joined: Jul 2000
Posts: 26,948
This is a great tip. I viewed the videos and I'll give this a try. Thanks for posting!


BIAB 2025 Win Audiophile. Software: Studio One 7 Pro, Swam horns, Acoustica-7, Notion 6, Song Master Pro, Win 11 Home. Hardware: Intel i9, 32 Gb; Roland Integra-7, Presonus 192 & Faderport 8, Royer 121, Adam Sub8 & Neumann 120 monitors.
Post your own Tips and Tricks here
Joined: Oct 2008
Posts: 19,791
Veteran
Offline
Veteran
Joined: Oct 2008
Posts: 19,791
Thanks for all this information, Pipeline. It's fantastic! You've inspired me to have a play smile


MY SONGS...
Audiophile BIAB 2025
Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
This script will copy the xml chords to regions.

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
tChords[#tChords+1] = {ticks = ticks}
for i = 1, #tChords do
    tChords[i].time = reaper.MIDI_GetProjTimeFromPPQPos(take, tChords[i].ticks)
end
for i = 1, #tChords-1 do
    -- Set Region Color RGB > reaper.ColorToNative(55,118,235)
    reaper.AddProjectMarker2(0, true, tChords[i].time, tChords[i+1].time, tChords[i].chord, 0, reaper.ColorToNative(55,118,235)|0x1000000) 
end
reaper.Undo_EndBlock2(0, "Convert xml chords to regions", -1)


In Reaper Menu > Actions > Show Action List > Reascript > New > Convert xml chords to regions.lua
(this should Save in Reaper Resources\Scripts, to find folder > Options > Show REAPER Resource path..)
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 script you can change the default region (R,G,B) color > reaper.ColorToNative(55,118,235), to edit the region color right click the region.

To convert the Regions to Text Items Track install ReaPack https://reapack.com/
then Extensions > ReaPack > Browse packages
X-Raym_Create text items on first selected track from regions
right click > Install > Apply
Insert a new track, select it, run > X-Raym_Create text items on first selected track from regions



Attached Files (Click to download or enlarge) (Only available when you are logged in)
Reaper_xml-Chords.png (186.39 KB, 339 downloads)
Post your own Tips and Tricks here
Joined: Nov 2012
Posts: 4,786
Veteran
Offline
Veteran
Joined: Nov 2012
Posts: 4,786
Why hasn't PG just hired you years ago, Pipeline cool


Just because you can, doesn't mean you should!
----------------------------------------------------------------------
BBox 2022 Audiophile, Mac Pro Intel, OSX 10.6.8, 800x600 (TV VGA)
Post your own Tips and Tricks here
Joined: Mar 2017
Posts: 876
Expert
Offline
Expert
Joined: Mar 2017
Posts: 876
Ya know something, Pipline?

You are a freaking genius and you deserve a medal of honor and then some!

Please hire this guy, PG Music!


Band-in-a-Box 2024. Custom Build Desktop PC W/ Windows 10 Home 64-bit. CPU: Intel Core i5-9600k @ 3.7GHz (6 core x 6 threads) RAM: 16GB DDR4. Storage 238GB SSD + 2.7 TB HDD. GPU: ZOTAC NVIDIA GeForce GTX 1050 Ti 4GB
Post your own Tips and Tricks here
Joined: Aug 2011
Posts: 10,775
Veteran
Offline
Veteran
Joined: Aug 2011
Posts: 10,775
Originally Posted By: DeaconBlues09
Ya know something, Pipline?

You are a freaking genius and you deserve a medal of honor and then some!

Please hire this guy, PG Music!
So true. I hope PG Music is listening.


Jim Fogle - 2025 BiaB (Build 1128) RB (Build 5) - Ultra+ PAK
DAWs: Cakewalk by BandLab (CbB) - Standalone: Zoom MRS-8
Laptop: i3 Win 10, 8GB ram 500GB HDD
Desktop: i7 Win 11, 12GB ram 256GB SSD, 4 TB HDD
Music at: https://fogle622.wix.com/fogle622-audio-home
Post your own Tips and Tricks here
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
To get BB's 2 bar count-in, File > Project Settings > Project start measure: -1

Attached Files (Click to download or enlarge) (Only available when you are logged in)
Reaper-Project-Settings.png (32.6 KB, 68 downloads)
Previous Thread
Next Thread
Go To

Link Copied to Clipboard
ChatPG

Ask sales and support questions about Band-in-a-Box using natural language.

ChatPG's knowledge base includes the full Band-in-a-Box User Manual and sales information from the website.

PG Music News
Band-in-a-Box 2025 Italian Version is Here!

Cari amici
È stata aggerate la versione in Italiano del programma più amato dagli appassionati di musica, il nostro Band-in-a-Box.
Questo è il link alla nuova versione 2025.

Di seguito i link per scaricare il pacchetti di lingua italiana aggiornati per Band-in-a-Box e RealBand, anche per chi avesse già comprato la nuova versione in inglese.

Band-in-a-Box 2025 - Italiano
RealBand 2025 - Italiano

Band-in-a-Box 2025 French Version is Here!

Bonjour à tous,

Band-in-a-Box® 2025 pour Windows est disponible en Français.
Le téléchargement se fait à partir du site PG Music

Pour ceux qui auraient déjà acheté la version 2025 de Band-in-a-Box (et qui donc ont une version anglaise), il est possible de "franciser" cette version avec les patchs suivants:

BIAB 2025 - francisation
RealBand 2025 - francisation

Voilà, enjoy!

Band-in-a-Box 2025 German Version is Here!

Band-in-a-Box 2025 für Windows Deutsch ist verfügbar!

Die deutsche Version Band-in-a-Box® 2025 für Windows ist ab sofort verfügbar!

Alle die bereits die englische Version von Band-in-a-Box und RealBand 2024 installiert haben, finden hier die Installationsdateien für das Sprachenupdate:

https://nn.pgmusic.com/pgfiles/languagesupport/deutsch2025.exe
https://nn.pgmusic.com/pgfiles/languagesupport/deutsch2025RB.exe

Update Your Band-in-a-Box® 2025 to Build 1128 for Windows Today!

Already using Band-in-a-Box 2025 for Windows®? Download Build 1128 now from our Support Page to enjoy the latest enhancements and improvements from our team.

Stay up to date—get the latest update now!

Update to RealBand® 2025 Build 5 Windows Today!

Already using RealBand® 2025 for Windows®? Download Build 5 now from our Support Page to ensure you have the latest enhancements and improvements from our team.

Get the latest update today!

PowerTracks Pro Audio 2025 for Windows is Here!

PowerTracks Pro Audio 2025 is here! This new version introduces many features, including VST3 support, the ability to load or import a .FLAC file, a reset option for track height in the Tracks window, a taller Timeline on the Notation window toolbar, new freeze buttons in the Tracks window, three toolbar modes (two rows, single row, and none), the improved Select Patch dialog with text-based search and numeric patch display, a new button in the DirectX/VST window to copy an effects group, and more!

First-time packages start at only $49. Already a PowerTracks Pro Audio user? Upgrade for as little as $29!

www.pgmusic.com/powertracks.htm

Video: Summary of the New Band-in-a-Box® App for iOS®

Join Tobin as he takes you on a tour of the new Band-in-a-Box® app for iOS®! Designed for musicians, singer-songwriters, and educators, this powerful tool lets you create, play, and transfer songs effortlessly on your iPhone® or iPad®—anytime, anywhere.

Band-in-a-Box® for iOS® :Summary video.

Check out the forum post for more information.

Forum Statistics
Forums58
Topics84,121
Posts775,044
Members39,562
Most Online25,754
Jan 24th, 2025
Newest Members
EdHumbleton, sindanform, MisterSala, miku34, revlee
39,562 Registered Users
Top Posters(30 Days)
MarioD 186
DC Ron 100
rsdean 92
WaoBand 86
Noel96 83
dcuny 68
Today's Birthdays
There are no members with birthdays on this day.
Powered by UBB.threads™ PHP Forum Software 7.7.5