Previous Thread
Index
Next Thread
Print Thread
Go To
Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110
Biab-random-instrument-picker.zip (contains AHK script and ReadMe)

Install www.autohotkey.com V1 then set C:\Program Files\AutoHotkey\AutoHotkey.exe to Run As Administrator by right click if you are running Biab As Administrator.

*Before first use, go into RealTrack Picker, "Show All" and uncheck "Show RealTracks that are N/A" then click the "Copy List" this may take some time. Do the same in the RealDrum Picker. You will then have RealTracksList.txt and RealDrumsList.txt in C:\bb\Data.


Open the ahk script with NotePad or text editor, set it to your paths then save:

RTtxt := "C:\bb\Data\RealTracksList.Txt"
RDtxt := "C:\bb\Data\RealDrumsList.txt"
RTdemos := "C:\bb\Demos\RealTracks - Demos\"
RDdemos := "C:\bb\RealTracks\Data\RealDrums Demos Audio\"

You can run the script from anywhere or create a folder C:\bb\Scripts
Select the Mixer Track first you want to Inject in.

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB23-Random-PickerGUI.png (24.44 KB, 522 downloads)
BB23-Random-Picker.png (137.68 KB, 265 downloads)
Band-in-a-Box for Windows
Joined: Sep 2013
Posts: 433
S
Journeyman
Offline
Journeyman
S
Joined: Sep 2013
Posts: 433
Thanks,

Good stuff it works great.

I also found out that I was missing a majority of the drum audio files (BIAB looks them up on internet)

Is there a way do download it all locally?.

I found an old link in the forum from 2015 (Jim Fogle) to download them all as per 2015, but I wonder if there is a more recent way get them all downloaded locally. I merged it together with my current demo and it seems to work fine (I don't know how many audio files I still miss).

https://www.pgmusic.com/forums/ubbthreads.php?ubb=showflat&Number=281774

Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110

Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110
Here's an updated version of Random Style Picker:
Biab-Random-Style-Picker.zip (contains script and ReadMe)

Install www.autohotkey.com V1 then set C:\Program Files\AutoHotkey\AutoHotkey.exe to Run As Administrator by right click if you are running Biab As Administrator.

*Before first use, go into The Style Picker, "Clear Filter", then Actions > "Copy List to clipboard" this may take some time. You will then have StyleListTabDelimited.Txt in C:\bb\Data.

Also Actions > Set Dialog Options > Show current style in list even... > "never"


Open the ahk script with NotePad or text editor, set it to your paths then save:

txt := "C:\bb\Data\StyleListTabDelimited.txt"

You can run the script from anywhere or create a folder C:\bb\Scripts


Band-in-a-Box for Windows
Joined: Sep 2013
Posts: 433
S
Journeyman
Offline
Journeyman
S
Joined: Sep 2013
Posts: 433
I am playing around a bit with the Random Instrument and Drum picker.

I did put in a request in the BIAB wish list quite a while back to have a more simplified Audit function for the RTs and RDs as well as styles.

Basically to be able to mark up a selection or otherwise specify a selection, and then to select a play length in seconds, and then to be able to press the play button once (or step by step) and having the system play through the whole selection one by one (for for the given duration for each).

Then I could lay back in my couch just listening through them all and make a mental notation of the ones I like and take it further later on.

It seems that this script could be used for this with some minor modifications. I am almost there with the drums.

ie make the selection as now with genre, tempo, feel etc, add feature to add duration, and instead of random make it a linear play just make the script play through all drums in the specified selection (or keep random and add a new linear play as well).

Quite fun I am almost there with the drums.

Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110
There are plenty of ready made AHK scripts to handle the csv/tab delimited txt files that you could modify to play the results. I think if you have mp4 video RealTracks/Drums you could even get it to play them as video preview.
You don't need to wait years for something to be implemented if you use AHK.

Attached Files (Click to download or enlarge) (Only available when you are logged in)
AHK-CSV-Search.png (18.58 KB, 103 downloads)
Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110
In the search section if it finds "^" in the drum name it will use
*01_solo.wma
but if you read the txt files in any drums folder for any with "^" you will get the number of variations that you can add in the search
and play
*01_solo.wma
*02_solo.wma
*03_solo.wma

AmericanaSlow8sBrushesFred^1-A,B_65_Style.txt
AmericanaSlow8sBrushesFred^2-A,B_65_Style.txt
AmericanaSlow8sBrushesFred^3-A,B_65_Style.txt

or you can read DrumGrooveNames.txt
AmericanaSlow8sBrushesFred^
AmericanaSlow8sBrushesFred^\AmericanaSlow8sBrushesFred^1-A,B$3$2
AmericanaSlow8sBrushesFred^\AmericanaSlow8sBrushesFred^2-A,B$3$1
AmericanaSlow8sBrushesFred^\AmericanaSlow8sBrushesFred^3-A,B$1$2

also if you want to hear with the band
*01_band.wma

Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110
Random Style Picker: Updated with Play Stop Inject buttons. Shortcuts Alt+R Alt+P Alt+S Alt+I. Auto Play option added. Added Long Name.
Biab-Random-Style-Picker.zip (contains script and ReadMe)

Install www.autohotkey.com V1 then set C:\Program Files\AutoHotkey\AutoHotkey.exe to Run As Administrator by right click if you are running Biab As Administrator.

*Before first use, go into The Style Picker, "Clear Filter", then Actions > "Copy List to clipboard" this may take some time. You will then have StyleListTabDelimited.Txt in C:\bb\Data.

Also Actions > Set Dialog Options > Show current style in list even... > "never"


Open the ahk script with NotePad or text editor, set it to your paths then save:

txt := "C:\bb\Data\StyleListTabDelimited.txt"
STYdemos := "C:\bb\RealTracks\Data\Style Demos Audio\"


You can run the script from anywhere or create a folder C:\bb\Scripts


Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 3,110
M
Veteran
OP Offline
Veteran
M
Joined: Jun 2009
Posts: 3,110
Added Auto Play option.
autoplay := 1 ; set 1 = autoplay 2 = no auto play

Biab-random-instrument-picker.zip (contains AHK script and ReadMe)

Install www.autohotkey.com V1 then set C:\Program Files\AutoHotkey\AutoHotkey.exe to Run As Administrator by right click if you are running Biab As Administrator.

*Before first use, go into RealTrack Picker, "Show All" and uncheck "Show RealTracks that are N/A" then click the "Copy List" this may take some time. Do the same in the RealDrum Picker. You will then have RealTracksList.txt and RealDrumsList.txt in C:\bb\Data.


Open the ahk script with NotePad or text editor, set it to your paths then save:

RTtxt := "C:\bb\Data\RealTracksList.Txt"
RDtxt := "C:\bb\Data\RealDrumsList.txt"
RTdemos := "C:\bb\Demos\RealTracks - Demos\"
RDdemos := "C:\bb\RealTracks\Data\RealDrums Demos Audio\"

autoplay := 1 ; set 1 = autoplay 2 = no auto play

You can run the script from anywhere or create a folder C:\bb\Scripts
Select the Mixer Track first you want to Inject in.
This needs the Audio Demos for RealDrums so if you don't have them:
Originally Posted By: Andrew - PG Music
MIDI Style Demos Audio, and RealDrums Demos Audio from 2014 or earlier aren't currently included in the download by default. We will plan to add those. Here are links to download them. The files should be extracted to "Style Demos Audio" and "RealDrums Demos Audio" folder in your RealTracks\Data folder.

MIDI Style Demos Audio (7 GB):
https://demos.pgmusic.com/audio/allrdstydemoszip/style-demos-audio_1_midisty_05-28-14.zip

All RealDrums Demos Audio (3.5 GB):
https://demos.pgmusic.com/audio/allrdstydemoszip/realdrums_demos_audio_03-05-2023.zip



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
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.

Band-in-a-Box 2025 for Mac Videos

With the release of Band-in-a-Box® 2025 for Mac, we’re rolling out a collection of brand-new videos on our YouTube channel. We’ll also keep this forum post updated so you can easily find all the latest videos in one convenient spot.

From overviews of new features and walkthroughs of the 202 new RealTracks, to highlights of XPro Styles PAK 8, Xtra Styles PAKs 18, the 2025 49-PAK, and in-depth tutorials — you’ll find everything you need to explore what’s new in Band-in-a-Box® 2025.

Reference this forum post for One-Stop Shopping of our Band-in-a-Box® 2025 Mac Videos — we’ll be adding more videos as they’re released!

Band-in-a-Box 2025 for Mac is Here!

Band-in-a-Box® 2025 for Mac is here, packed with major new features and an incredible collection of available new content! This includes 202 RealTracks (in Sets 449-467), plus 20 bonus Unreleased RealTracks in the 2025 49-PAK. There are new RealStyles, MIDI SuperTracks, Instrumental Studies, “Songs with Vocals” Artist Performance Sets, Playable RealTracks Set 4, two new sets of “RealDrums Stems,” XPro Styles PAK 8, Xtra Styles PAK 19, and more!

Special Offers
Upgrade to Band-in-a-Box® 2025 for Mac with savings of up to 50% on most upgrade packages during our special—available until July 31, 2025! Visit our Band-in-a-Box® packages page for all the purchase options available.

2025 Free Bonus PAK & 49-PAK Add-ons
We've packed our Free Bonus PAK & 49-PAK with some incredible Add-ons! The Free Bonus PAK is automatically included with most Band-in-a-Box® for Mac 2025 packages, but for even more Add-ons (including 20 Unreleased RealTracks!) upgrade to the 2025 49-PAK for only $49. You can see the full lists of items in each package, and listen to demos here.

If you have any questions, feel free to connect with us directly—we’re here to help!

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!

Forum Statistics
Forums58
Topics84,280
Posts777,292
Members39,610
Most Online25,754
Jan 24th, 2025
Newest Members
CATBELLOU, Banjopotamus, BudLab, ranvidlor, mario39956
39,610 Registered Users
Top Posters(30 Days)
MarioD 152
zedd 119
DC Ron 102
WaoBand 101
nonchai 100
rsdean 86
JayO 72
Today's Birthdays
There are no members with birthdays on this day.
Powered by UBB.threads™ PHP Forum Software 7.7.5