Previous Thread
Index
Next Thread
Print Thread
Go To
Band-in-a-Box for Windows
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Live Arranger Mode was a 2011 post in the wishlist.
It has been asked for many times over the years.
This is another reason for direct play, if Biab just loads the RT data from the selected style then plays back the inputted chord direct from the RT's on the hard drive.
Biab already has midi keyboard chord input (see pic) so when a chord is played on the user's keyboard it could play that chord directly from the location in the source file.
If a new chord is not entered it will loop that same chord section again or another one with the same chord.

I tried this in Reaper and it all just works playing the files direct from hard drive without a glitch, as I change the input chord it will play that section in the files on the USB drive.
It can change on the next beat or at the end of a bar.

Rather than choosing chord sections from the source files to join together in RAM then play,
it will choose a section for the currently inputted chord, go straight to it and play.
This is what it is doing in the video Play-Direct-Arranger.mp4 they are 24bit 48khz files on a USB drive.
Biab could do that and be a live Arranger, I think Yamaha have audio drums but I don't know if they have audio instruments yet.
Biab could be then used with a laptop and the user's keyboard.

This Play-Direct-Arranger-BBvst.mp4 is using 2 BBPlugins to get a verse ending and chorus ending in the other.
It is playing the files back direct from the SavedTracks folders.
So Biab should be able to play the RTs direct and live.


It has been implemented into JJazzLab in the same year:
Originally Posted By: chrisroode
Jun 14, 2021 at 10:39pm Hello, just discovered this software...perfect for my teaching job! Anyway....Is there a way to have JJazzLab recognize chords from a midi input?

I only need (literally) the same thing those casio keyboards do, where I can play a C maj chord, and the accompaniment instead switches to C maj. Then when I play an Fmaj chord (even in 2nd inversion) it will switch to that.

I'm planning to use this software for echo playing of rhythms and melodic passages to teach beginning band kids. I like to have the chords change with what I play, but there is no specific form to what I'm doing...so if say the kids mess up a measure that goes Bb, F7, then I want to be able to repeat that on the fly, and I can easily do that if I am at a keyboard and just hammering out the melody on the right hand and playing block chord changes on the left.

Summer break is coming, and if this is not something available, I am willing to fork and make it...

Originally Posted By: Jerome
Oct 1, 2021 at 4:26am @chrisroode I've implemented it in JJazzLab 3.0, to be released in november probably.

There is a slight delay (<1 sec) when you change the chord on the keyboard to get the backing track updated, so it's not pure real-time like vArranger, but it should not be a problem for your use case.

Band-in-a-Box for Windows
Joined: Feb 2015
Posts: 7,954
P
Veteran
OP Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
I don't have an arranger keyboard so I'm not sure exactly how they are set up, but I thought something like this below, if you think that will work ?
If you hit a keyswitch that will be the next section played on a new chord or the same chord is played, the change will occur on next beat or bar. If no section keyswitch is hit it will continue with the current.

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BB21-Live-Arranger-GUI.png (163.99 KB, 400 downloads)
Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 2,489
Veteran
Offline
Veteran
Joined: Jun 2009
Posts: 2,489
It's just turned 2024 where I am, so it looks like I have to spend 2024 making this along with a VST with the generate code in it. I thought the 2024 version would have all this and I could retire from all the years getting Biab and the Plugin where they needs to be frown frown

Band-in-a-Box for Windows
Joined: Jun 2009
Posts: 2,489
Veteran
Offline
Veteran
Joined: Jun 2009
Posts: 2,489
I got the Live Arranger sorted and posted in the BiabVST thread:

Install Pre-Release SWS Extensions https://www.sws-extension.org/download/pre-release/

Code
file1 = "E:\\bb\\RealTracks\\Bass, Electric, BritInvasion Ev 120\\BS1691.wma"

wma_source1 = reaper.PCM_Source_CreateFromFile(file1)

track1 = reaper.CF_CreatePreview(wma_source1)

reaper.CF_Preview_SetValue(track1, "D_VOLUME", 1)

reaper.CF_Preview_SetValue(track1, "D_POSITION", 4)

reaper.CF_Preview_SetValue(track1, "D_PITCH", 2)

reaper.CF_Preview_SetValue(track1, "D_PLAYRATE", 1)

reaper.CF_Preview_SetValue(track1, "B_PPITCH", 1)

reaper.CF_Preview_Play(track1)

retval, current_pos  = reaper.CF_Preview_GetValue(track1, "D_POSITION")

This should work to play the sections the same way I demonstrated with a Video Here It's the same now how the Plugin inserts all the sections and Reaper plays them back yet it will be using the source files direct without loading into a Reaper track, you will have virtual tracks.

So you load all the track data for the chosen style,
When a chord is entered it will look for a chord section for each track from a source file,
The CF_Preview_GetValue(track1, "D_POSITION") will get the current play position in the file until that chord ends
it will then play another section with the same chord or until user changes chords.
You can reaper.CF_Preview_Stop(track1)
or reaper.CF_Preview_StopAll()

I used defer:
reaper.defer(function)

Adds code to be called back by REAPER. Used to create persistent ReaScripts that continue to run and respond to input, while the user does other tasks. Identical to runloop().
Note that no undo point will be automatically created when the script finishes, unless you create it explicitly.


You can try it this way using the Reaper C++ API and later you maybe able to get the BBvst to do it all allowing the BBPluginStandalone to be used ?


https://www.extremraym.com/cloud/reascript-doc/#CF_CreatePreview

https://www.extremraym.com/cloud/reascript-doc/
search CF_Preview

Code
The preview object is automatically destroyed at the end of a defer cycle if at least one of these conditions are met:
- playback finished
- playback was not started using CF_Preview_Play
- the output track no longer exists)", },
	{ APIFUNC(CF_Preview_GetValue), "bool", "CF_Preview*,const char*,double*", "preview,name,valueOut", R"(Supported attributes:
B_LOOP         seek to the beginning when reaching the end of the source
B_PPITCH       preserve pitch when changing playback rate
D_FADEINLEN    lenght in seconds of playback fade in
D_FADEOUTLEN   lenght in seconds of playback fade out
D_LENGTH       (read only) length of the source * playback rate
D_MEASUREALIGN >0 = wait until the next bar before starting playback (note: this causes playback to silently continue when project is paused and previewing through a track)
D_PAN          playback pan
D_PITCH        pitch adjustment in semitones
D_PLAYRATE     playback rate
D_POSITION     current playback position
D_VOLUME       playback volume
I_OUTCHAN      first hardware output channel (&1024=mono, reads -1 when playing through a track, see CF_Preview_SetOutputTrack)
I_PITCHMODE    highest 16 bits=pitch shift mode (see EnumPitchShiftModes), lower 16 bits=pitch shift submode (see EnumPitchShiftSubModes))", },
	{ APIFUNC(CF_Preview_GetPeak), "bool", "CF_Preview*,int,double*", "preview,channel,peakvolOut", "Read peak volume for channel 0 or 1. Only available when outputting to a hardware output (not through a track).", },
	{ APIFUNC(CF_Preview_SetValue), "bool", "CF_Preview*,const char*,double", "preview,name,newValue", "See CF_Preview_GetValue.", },
	{ APIFUNC(CF_Preview_SetOutputTrack), "bool", "CF_Preview*,ReaProject*,MediaTrack*", "preview,project,track", "", },
	{ APIFUNC(CF_Preview_Play), "bool", "CF_Preview*", "preview", "Start playback of the configured preview object.", },
	{ APIFUNC(CF_Preview_Stop), "bool", "CF_Preview*", "preview", "Stop and destroy a preview object.", },
	{ APIFUNC(CF_Preview_StopAll), "void", "", "", "Stop and destroy all currently active preview objects.", },

	{ NULL, } // denote end of table
};

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
User Video: Next-Level AI Music Editing with ACE Studio and Band-in-a-Box®

The Bob Doyle Media YouTube channel is known for demonstrating how you can creatively incorporate AI into your projects - from your song projects to avatar building to face swapping, and more!

His latest video, Next-Level AI Music Editing with ACE Studio and Band-in-a-Box, he explains in detail how you can use the Melodist feature in Band-in-a-Box with ACE Studio. Follow along as he goes from "nothing" to "something" with his Band-in-a-Box MIDI Melodist track, using ACE Studio to turn it into a vocal track (or tracks, you'll see) by adding lyrics for those notes that will trigger some amazing AI vocals!

Watch: Next-Level AI Music Editing with ACE Studio and Band-in-a-Box


Band-in-a-Box® 2024 German for Windows is Here!

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

Wir waren fleißig und haben über 50 neue Funktionen und eine erstaunliche Sammlung neuer Inhalte hinzugefügt, darunter 222 RealTracks, neue RealStyles, MIDI SuperTracks, Instrumental Studies, "Songs with Vocals" Artist Performance Sets, abspielbare RealTracks Set 3, abspielbare RealDrums Set 2, zwei neue Sets von "RealDrums Stems", XPro Styles PAK 6, Xtra Styles PAK 17 und mehr!

Paket | Was ist Neu

Update Your PowerTracks Pro Audio 2024 Today!

Add updated printing options, enhanced tracks settings, smoother use of MGU and SGU (BB files) within PowerTracks, and more with the latest PowerTracks Pro Audio 2024 update!

Learn more about this free update for PowerTracks Pro Audio & download it at www.pgmusic.com/support_windows_pt.htm#2024_5

The Newest RealBand 2024 Update is Here!

The newest RealBand 2024 Build 5 update is now available!

Download and install this to your RealBand 2024 for updated print options, streamlined loading and saving of .SGU & MGU (BB) files, and to add a number of program adjustments that address user-reported bugs and concerns.

This free update is available to all RealBand 2024 users. To learn more about this update and download it, head to www.pgmusic.com/support.realband.htm#20245

The Band-in-a-Box® Flash Drive Backup Option

Today (April 5) is National Flash Drive Day!

Did you know... not only can you download your Band-in-a-Box® Pro, MegaPAK, or PlusPAK purchase - you can also choose to add a flash drive backup copy with the installation files for only $15? It even comes with a Band-in-a-Box® keychain!

For the larger Band-in-a-Box® packages (UltraPAK, UltraPAK+, Audiophile Edition), the hard drive backup copy is available for only $25. This will include a preinstalled and ready to use program, along with your installation files.

Backup copies are offered during the checkout process on our website.

Already purchased your e-delivery version, and now you wish you had a backup copy? It's not too late! If your purchase was for the current version of Band-in-a-Box®, you can still reach out to our team directly to place your backup copy order!

Note: the Band-in-a-Box® keychain is only included with flash drive backup copies, and cannot be purchased separately.

Handy flash drive tip: Always try plugging in a USB device the wrong way first? If your flash drive (or other USB plug) doesn't have a symbol to indicate which way is up, look for the side with a seam on the metal connector (it only has a line across one side) - that's the side that either faces down or to the left, depending on your port placement.

Update your Band-in-a-Box® 2024 for Windows® Today!

Update your Band-in-a-Box® 2024 for Windows for free with build 1111!

With this update, there's more control when saving images from the Print Preview window, we've added defaults to the MultiPicker for sorting and font size, updated printing options, updated RealTracks and other content, and addressed user-reported issues with the StylePicker, MIDI Soloists, key signature changes, and more!

Learn more about this free update for Band-in-a-Box® 2024 for Windows at www.pgmusic.com/support_windowsupdates.htm#1111

Band-in-a-Box® 2024 Review: 4.75 out of 5 Stars!

If you're looking for a in-depth review of the newest Band-in-a-Box® 2024 for Windows version, you'll definitely find it with Sound-Guy's latest review, Band-in-a-Box® 2024 for Windows Review: Incredible new capabilities to experiment, compose, arrange and mix songs.

A few excerpts:
"The Tracks view is possibly the single most powerful addition in 2024 and opens up a new way to edit and generate accompaniments. Combined with the new MultiPicker Library Window, it makes BIAB nearly perfect as an 'intelligent' composer/arranger program."

"MIDI SuperTracks partial generation showing six variations – each time the section is generated it can be instantly auditioned, re-generated or backed out to a previous generation – and you can do this with any track type. This is MAJOR! This takes musical experimentation and honing an arrangement to a new level, and faster than ever."

"Band in a Box continues to be an expansive musical tool-set for both novice and experienced musicians to experiment, compose, arrange and mix songs, as well as an extensive educational resource. It is huge, with hundreds of functions, more than any one person is likely to ever use. Yet, so is any DAW that I have used. BIAB can do some things that no DAW does, and this year BIAB has more DAW-like functions than ever."

Forum Statistics
Forums66
Topics81,662
Posts735,544
Members38,532
Most Online2,537
Jan 19th, 2020
Newest Members
Jeffrey thomas, skyanderson3, akbrpra, Benfil77, William L
38,532 Registered Users
Top Posters(30 Days)
MarioD 173
DC Ron 103
dcuny 85
WaoBand 74
rsdean 74
Today's Birthdays
jazzkeith, Mavrick20002, Pain-Driven, rolfie, Roycol
Powered by UBB.threads™ PHP Forum Software 7.7.5