Log in to post
|
Print Thread |
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
Last edited by musocity; 01/09/24 08:05 AM.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
Hey Musocity, I tried running the script and got a popup notification reading "No project markers present!" Am I missing a step? TIA
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
Is it giving a line number error for the script ? This is the script I use (click Edit to look at script): Script: Write take markers to all items on selected track source folder name.lua function Msg(value)
reaper.ShowConsoleMsg(tostring(value).."\n")
end
os_type = reaper.GetOS() -- "Mac OSX" -- "Win64" --
sel_track = reaper.GetSelectedTrack2( 0, 0, 0 )
sel_track_count = reaper.CountSelectedTracks(0)
if not sel_track then
reaper.MB("Select Track", "Notice",0)
goto finish_tm
end
if sel_track_count ~= 1 then
reaper.MB("Select 1 Track", "Notice",0)
goto finish_tm
end
reaper.Undo_BeginBlock() -- Begining of the undo block. Leave it at the top of your main function.
reaper.Main_OnCommand(40289,0) -- Item: Unselect (clear selection of) all items
reaper.Main_OnCommand(40421,0) -- Item: Select all items in track
for i=0, reaper.CountSelectedMediaItems(0)-1 do
media_item = reaper.GetSelectedMediaItem(0, i)
take = reaper.GetMediaItemTake(media_item, 0)
source = reaper.GetMediaSourceFileName(reaper.GetMediaItemTake_Source(take), "")
startOffset = reaper.GetMediaItemTakeInfo_Value(take, "D_STARTOFFS")
--Msg("source "..source)
if string.find(source,"Drums") or string.find(source,"DRUMS")then
drums = 1
else
drums = 0
end
--Msg("drums "..drums)
if source then
if os_type ~= "Win32" and os_type ~= "Win64" then
--Mac OS
RT_track_name = string.match(source, "RealTracks/(.+)/")
if string.find(source,"Drums") then
RD_track_name = string.match(source, "Drums/(.+)/")
end
if string.find(source,"DRUMS")then
RD_track_name = string.match(source, "DRUMS/(.+)/")
end
else
--Win OS
RT_track_name = string.match(source, "RealTracks\\(.+)\\")
if string.find(source,"Drums") then
RD_track_name = string.match(source, "Drums\\(.+)\\")
end
if string.find(source,"DRUMS") then
RD_track_name = string.match(source, "DRUMS\\(.+)\\")
end
end
end
if drums == 0 then
track_name = RT_track_name
else
track_name = RD_track_name
end
--Msg("track_name "..track_name)
reaper.SetTakeMarker( take, 0, track_name, startOffset, reaper.ColorToNative(80, 237, 123 )|0x1000000)
end
reaper.Main_OnCommand(40289,0) -- Item: Unselect (clear selection of) all items
reaper.UpdateArrange() -- Update the arrangement (often needed)
reaper.Undo_EndBlock("Write take markers to track items", -1) -- End of the undo block. Leave it at the bottom of your main function.
::finish_tm::
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
No line number. I've attached a screenshot so you could also see what items were and weren't checked in the Send to Reaper options in case that is affecting things. (I am trying to keep as few things checked for fear of generating files that I don't need...) ![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29750&filename=Reaper Script No project markers present.PNG)
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
You are using a different Script: ReaTrak amagalma_Write project markers or regions as media cues to selected items active takes source files.lua to write chord names into the wav file you need some regions or markers, to get them just unfold the BB Plugin Chord sheet, then drag the C7 icon (right click for options) to the start of an empty track in Reaper and import the markers, you can leave as markers or change to regions with action > markers to regions
The script here is to write the RealTrack or RealDrum name in the items as take markers, this only works if you are using WAV Instructions in Reaper. It will look at the RealTrack/Drum source folder name.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
You have Send Audio for Midi track, this will take longer, best to uncheck that and just drag the midi in or use a Send. So the "Script: Write take markers to all items on selected track source folder name.lua" will only work on the RT/RD using wav instructions (all the little separate items) it won't work on a rendered midi to wav file. EDIT: there is also "Script: ReaTrak insert media cue to selected item active take wav source file.lua" that will write text into a wav file as a cue where the cursor is in selected item.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
Omg, I feel like a moron for missing that I was using the wrong script  For some reason when copied the proper script to me folder and rebooted Reaper it did not show up when I searched for in the action list. So I imported it instead and it worked like a charm! And wow, thanks a lot for this script! At the very least, I can see how helpful it would be to see everything especially when you are working on a region further towards the right side of the screen, and also when reordering and reorganizing tracks. But then I realized that the fact the text is embedded in each item, and I can drag things around and have multiple items from multiple tracks all on a single track with each item being clearly demarcated what it is.... this is absolute genius!!!  Is there a way to embed the chord information as well?
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
Follow up question: Is there a way to "Favorite" scripts?
And another issue just popped up. I'm not sure what I did, but now whenever I try to run the scrip I got a popup error box saying "...rs to all items on selected track source folder name.lua:79: bad argument #3 to 'SetTakeMarker' (string expected, got nil)" (the error message begins with the ellipsis)
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
Fantastic! I'll try this out and let you know if I have any issues :-)
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
And yet another follow up question, if I can't get it to also automatically generate chord info with the RT info in each item, is it possible to modify the text to add that information?
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
You have a recent list in the Actions menu, or you can go to the Scripts folder, copy a script then rename it with a unique name in front of it the load that script in, then search for that name. You should be able to make a toolbar with buttons that run scripts. https://forums.cockos.com/showthread.php?p=1157743![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29751&filename=Reaper-Toolbar-Buttons.png) ![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29752&filename=Reaper-Toolbar-Buttons2.png)
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
Follow up question: Is there a way to "Favorite" scripts?
And another issue just popped up. I'm not sure what I did, but now whenever I try to run the scrip I got a popup error box saying "...rs to all items on selected track source folder name.lua:79: bad argument #3 to 'SetTakeMarker' (string expected, got nil)" (the error message begins with the ellipsis) That only works if the item source is in the RealTracks or Drums folder. Right click on the item > Source properties (this will show the file and path) send me a pic
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
You have a recent list in the Actions menu, or you can go to the Scripts folder, copy a script then rename it with a unique name in front of it the load that script in, then search for that name. You should be able to make a toolbar with buttons that run scripts. https://forums.cockos.com/showthread.php?p=1157743![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29751&filename=Reaper-Toolbar-Buttons.png) ![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29752&filename=Reaper-Toolbar-Buttons2.png) Where can I find this toolbar? I tried finding that action and searched the Reatrack sub folders in my script folder for "Reatrak MIDI Toolbar" and can't find it there...
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
Follow up question: Is there a way to "Favorite" scripts?
And another issue just popped up. I'm not sure what I did, but now whenever I try to run the scrip I got a popup error box saying "...rs to all items on selected track source folder name.lua:79: bad argument #3 to 'SetTakeMarker' (string expected, got nil)" (the error message begins with the ellipsis) That only works if the item source is in the RealTracks or Drums folder. Right click on the item > Source properties (this will show the file and path) send me a pic Ah OK, that's starting to make sense. Because I had generated a few more tracks at that point, and some had the BBplugin folder as the source (where it did not work), and others had bb\RealTracks as the source folder, and it works there. Thing is that I generated all the tracks via the plugin (in the sense that none were "dragged in" from the main program, so why the difference? Now that I think of it, I generated the later tracks up top and dragged them in from the side panel rather than using "Send to Reaper." I tried the latter method again, and all is working well! Leaving this rambling comment here for others who may run in to the same issue. Thanks!
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
And yet another follow up question, if I can't get it to also automatically generate chord info with the RT info in each item, is it possible to modify the text to add that information? https://stash.reaper.fm/v/49718/ReaTrak-Create-text-items-on-first-selected-track-from-regions.zipyou can Insert > Empty item set track to Free item positioning, overlay on place under or on top you can group them so the text item chord name will stick to the audio item ![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29753&filename=Reaper-Text-Item.png) ![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29754&filename=Reaper-Text-Item2.png)
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 3,110
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 3,110 |
![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29755&filename=BB25-Plugin-Reaper-Chord-Midi.gif) You could also copy the midi chord track instead of text items
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29755&filename=BB25-Plugin-Reaper-Chord-Midi.gif) You could also copy the midi chord track instead of text items This appears to be the best method. However, my chord sheet when I drag it from the plugin is with MIDI and does not look as optimal for an overlay. ![[Linked Image - Only viewable when logged in]](https://www.pgmusic.com/forums/ubbthreads.php?ubb=download&Number=29756&filename=MIDI Chord sheet.PNG) Edit: Nevermind this last bit, I see I just needed to select the chord label option under the dropdown
Last edited by DeaconBlues09; 01/05/25 04:13 AM.
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
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Mar 2017
Posts: 876
Expert
|
Expert
Joined: Mar 2017
Posts: 876 |
Another issue, before I wrote that when I use "Send to Reaper" the source of the item the bb/Realtracks (as opposed to the BBplugin). Well, to my great despair that behavior does not remain consistent, and for the life of me I can't figure out how to keep it from only generating such that the source is the Realtrack folders so I can run the script
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
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
New RealTracks Released with Band-in-a-Box 2025!
We’ve expanded the Band-in-a-Box® RealTracks library with 202 incredible new RealTracks (in sets 449-467) across Jazz, Blues, Funk, World, Pop, Rock, Country, Americana, and Praise & Worship—featuring your most requested styles!
Jazz, Blues & World (Sets 449–455):
These RealTracks includes “Soul Jazz” with Neil Swainson (bass), Mike Clark (drums), Charles Treadway (organ), Miles Black (piano), and Brent Mason (guitar). Enjoy “Requested ’60s” jazz, classic acoustic blues with Colin Linden, and more of our popular 2-handed piano soloing. Plus, a RealTracks first—Tango with bandoneon, recorded in Argentina!
Rock & Pop (Sets 456–461):
This collection includes Disco, slap bass ‘70s/‘80s pop, modern and ‘80s metal with Andy Wood, and a unique “Songwriter Potpourri” featuring Chinese folk instruments, piano, banjo, and more. You’ll also find a muted electric guitar style (a RealTracks first!) and “Producer Layered Guitar” styles for slick "produced" sound.
Country, Americana & Praise (Sets 462–467):
We’ve added new RealTracks across bro country, Americana, praise & worship, vintage country, and songwriter piano. Highlights include Brent Mason (electric guitar), Eddie Bayers (drums), Doug Jernigan (pedal steel), John Jarvis (piano), Glen Duncan (banjo, mandolin & fiddle), Mike Harrison (electric bass) and more—offering everything from modern sounds to heartfelt Americana styles
Check out all the 202 New RealTracks (in sets 456-467)
And, if you are looking for more, the 2025 49-PAK (for $49) includes an additional 20 RealTracks with exciting new sounds and genre-spanning styles. Enjoy RealTracks firsts like Chinese instruments (guzheng & dizi), the bandoneon in an authentic Argentine tango trio, and the classic “tic-tac” baritone guitar for vintage country.
You’ll also get slick ’80s metal guitar from Andy Wood, modern metal with guitarist Nico Santora, bass player Nick Schendzielos, and drummer Aaron Stechauner, more praise & worship, indie-folk, modern/bro country with Brent Mason, and “Songwriter Americana” with Johnny Hiland.
Plus, enjoy user-requested styles like Soul Jazz RealDrums, fast Celtic Strathspey guitar, and Chill Hop piano & drums!
The 2025 49-PAK is loaded with other great new add-ons as well. Learn more about the 2025 49-PAK!
Bonus PAKs for Band-in-a-Box 2025 for Mac!
With your version 2025 for Mac Pro, MegaPAK, UltraPAK, UltraPAK+, Audiophile Edition or PlusPAK purchase, we'll include a Bonus PAK full of great new Add-ons FREE! Or upgrade to the 2025 49-PAK for only $49 to receive even more NEW Add-ons including 20 additional RealTracks!
These PAKs are loaded with additional add-ons to supercharge your Band-in-a-Box®!
This Free Bonus PAK includes:
- The 2025 RealCombos Booster PAK:
-For Pro customers, this includes 33 new RealTracks and 65+ new RealStyles.
-For MegaPAK customers, this includes 29 new RealTracks and 45+ new RealStyles.
-For UltraPAK customers, this includes 20 new RealStyles.
- Look Ma! More MIDI 13: Country & Americana
- Instrumental Studies Set 22: 2-Hand Piano Soloing - Rhythm Changes
- MIDI SuperTracks Set 44: Jazz Piano
- Artist Performance Set 17: Songs with Vocals 7
- Playable RealTracks Set 4
- RealDrums Stems Set 7: Jazz with Mike Clark
- SynthMaster Sounds and Styles (with audio demos)
- 128 GM MIDI Patch Audio Demos.
Looking for more great add-ons, then upgrade to the 2025 49-PAK for just $49 and you'll get:
- 20 Bonus Unreleased RealTracks and RealDrums with 20 RealStyles,
- FLAC Files (lossless audio files) for the 20 Bonus Unreleased RealTracks and RealDrums
- Look Ma! More MIDI 14: SynthMaster,
- Instrumental Studies Set 23: More '80s Hard Rock Soloing,
- MIDI SuperTracks Set 45: More SynthMaster
- Artist Performance Set 18: Songs with Vocals 8
- RealDrums Stems Set 8: Pop, Funk & More with Jerry Roe
Learn more about the Bonus PAKs for Band-in-a-Box® 2025 for Mac®!
New! Xtra Styles PAK 20 for Band-in-a-Box 2025 and Higher for Mac!
Xtra Styles PAK 20 for Mac & Windows Band-in-a-Box version 2025 (and higher) is here with 200 brand new RealStyles!
We're excited to bring you our latest and greatest in the all new Xtra Styles PAK 20 for Band-in-a-Box! This fresh installment is packed with 200 all-new styles spanning the rock & pop, jazz, and country genres you've come to expect, as well as the exciting inclusion of electronic styles!
In this PAK you’ll discover: Minimalist Modern Funk, New Wave Synth Pop, Hard Bop Latin Groove, Gospel Country Shuffle, Cinematic Synthwave, '60s Motown, Funky Lo-Fi Bossa, Heavy 1980s Metal, Soft Muted 12-8 Folk, J-Pop Jazz Fusion, and many more!
All the Xtra Styles PAKs 1 - 20 are on special for only $29 each (reg $49), or get all 209 PAKs for $199 (reg $399)! Order now!
Learn more and listen to demos of the Xtra Styles PAK 20.
Video: Xtra Styles PAK 20 Overview & Styles Demos: Watch now!
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 20 requires the 2025 or higher UltraPAK, UltraPAK+, or Audiophile Edition. They will not work with the Pro or MegaPAK version because they need the RealTracks from the UltraPAK, UltraPAK+, or Audiophile Edition.
New! XPro Styles PAK 9 for Band-in-a-Box 2025 and higher for Mac!
We've just released XPro Styles PAK 9 for Mac & Windows Band-in-a-Box version 2025 (and higher) with 100 brand new RealStyles, plus 29 RealTracks/RealDrums!
We've been hard at it to bring you the latest and greatest in this 9th installment of our popular XPro Styles PAK series! Included are 75 styles spanning the rock & pop, jazz, and country genres (25 styles each) that fans have come to expect, as well as 25 styles in this volume's wildcard genre: funk & R&B!
If you're itching to get a sneak peek at what's included in XPro Styles PAK 9, here is a small helping of what you can look forward to: Funky R&B Horns, Upbeat Celtic Rock, Jazz Fusion Salsa, Gentle Indie Folk, Cool '60s Soul, Funky '70s R&B, Smooth Jazz Hip Hop, Acoustic Rockabilly Swing, Funky Reggae Dub, Dreamy Retro Latin Jazz, Retro Soul-Rock Fusion, and much more!
Special Pricing! Until July 31, 2024, all the XPro Styles PAKs 1 - 9 are on sale for only $29 ea (Reg. $49 ea), or get them all in the XPro Styles PAK Bundle for only $149 (reg. $299)! Order now!
Learn more and listen to demos of XPro Styles PAKs.
Video: XPro Styles PAK 9 Overview & Styles Demos: Watch now!
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.
New! Xtra Styles PAK 20 for Band-in-a-Box 2025 and Higher for Windows!
Xtra Styles PAK 20 for Windows & Mac Band-in-a-Box version 2025 (and higher) is here with 200 brand new RealStyles!
We're excited to bring you our latest and greatest in the all new Xtra Styles PAK 20 for Band-in-a-Box! This fresh installment is packed with 200 all-new styles spanning the rock & pop, jazz, and country genres you've come to expect, as well as the exciting inclusion of electronic styles!
In this PAK you’ll discover: Minimalist Modern Funk, New Wave Synth Pop, Hard Bop Latin Groove, Gospel Country Shuffle, Cinematic Synthwave, '60s Motown, Funky Lo-Fi Bossa, Heavy 1980s Metal, Soft Muted 12-8 Folk, J-Pop Jazz Fusion, and many more!
All the Xtra Styles PAKs 1 - 20 are on special for only $29 each (reg $49), or get all 209 PAKs for $199 (reg $399)! Order now!
Learn more and listen to demos of the Xtra Styles PAK 20.
Video: Xtra Styles PAK 20 Overview & Styles Demos: Watch now!
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 20 requires the 2025 or higher UltraPAK, UltraPAK+, or Audiophile Edition. They will not work with the Pro or MegaPAK version because they need the RealTracks from the UltraPAK, UltraPAK+, or Audiophile Edition.
New! XPro Styles PAK 9 for Band-in-a-Box 2025 and higher for Windows!
We've just released XPro Styles PAK 9 for Windows & Mac Band-in-a-Box version 2025 (and higher) with 100 brand new RealStyles, plus 29 RealTracks/RealDrums!
We've been hard at it to bring you the latest and greatest in this 9th installment of our popular XPro Styles PAK series! Included are 75 styles spanning the rock & pop, jazz, and country genres (25 styles each) that fans have come to expect, as well as 25 styles in this volume's wildcard genre: funk & R&B!
If you're itching to get a sneak peek at what's included in XPro Styles PAK 9, here is a small helping of what you can look forward to: Funky R&B Horns, Upbeat Celtic Rock, Jazz Fusion Salsa, Gentle Indie Folk, Cool '60s Soul, Funky '70s R&B, Smooth Jazz Hip Hop, Acoustic Rockabilly Swing, Funky Reggae Dub, Dreamy Retro Latin Jazz, Retro Soul-Rock Fusion, and much more!
Special Pricing! Until July 31, 2024, all the XPro Styles PAKs 1 - 9 are on sale for only $29 ea (Reg. $49 ea), or get them all in the XPro Styles PAK Bundle for only $149 (reg. $299)! Order now!
Learn more and listen to demos of XPro Styles PAKs.
Video: XPro Styles PAK 9 Overview & Styles Demos: Watch now!
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.
Video: Band-in-a-Box® 2025 for Mac®: VST3 Plugin Support
Band-in-a-Box® 2025 for Mac® now includes support for VST3 plugins, alongside VST and AU. Use them with MIDI or audio tracks for even more creative possibilities in your music production.
Band-in-a-Box® 2025 for Macs®: VST3 Plugin Support
Video: Band-in-a-Box® 2025 for Mac®: Using VST3 Plugins
Join the conversation on our forum.
|
|
|
|
|
|
|
|
|
|
|
Forums58
Topics84,391
Posts778,621
Members39,644
|
Most Online25,754 Jan 24th, 2025
|
|
|
|
|
|
|
|
|