Log in to post
|
Print Thread |
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Install Pre-Release SWS Extensions https://www.sws-extension.org/download/pre-release/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_CreatePreviewhttps://www.extremraym.com/cloud/reascript-doc/search CF_Preview 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
};
Last edited by musocity; 01/01/24 10:24 PM.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Using the D_FADEINLEN & D_FADEOUTLEN you can get it seamless to loop the same section or play into a new section.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Live-Arranger-CF_Preview-3.mp4 This just works and I don't know how to get it not to work ? This is the recorded video of the script CF_Preview_Play Bass and Drums from above syncing to the original track sections
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Musocity, the above is one of the best tip descriptions you have made. Great visual step-by-step instructions. That's from another post but I will try and do a simplified easy to understand version here. When you choose a Style in Biab and generate it will read all the XT2 ST2 files for the RTs in that Style from the Soloists folder. These contain all the solo and chord data for the RC, SMT & RT source files in the RealTracks folder. The Live Arranger will work the same way, you set the Style, tempo and Key, you can also change these during the performance with keyswitches from the presets (Style Key Tempo), when the user inputs a C chord and is in the Play Mode it will scan the data for a C chord section in the source files and start playing the file from the position "value" of the C chord in the source file, when the bars of that chord have played out it will have another from another section of the files lined up to play. reaper.CF_Preview_SetValue(track1, "D_POSITION", 4) If the source file is transposed 2 semitones reaper.CF_Preview_SetValue(track1, "D_PITCH", 2) If the source file bpm is 110 and it needs to playback @ 120 then the playrate is changed reaper.CF_Preview_SetValue(track1, "D_PLAYRATE", 1.090909) Once the values are set that file section is played reaper.CF_Preview_Play(track1) It's doing this at the same time for each track in the Style as I showed in the video above playing different sections with the Bass and Drums. So as the user changes a chord it will instantly play all tracks from their required section from within the RT source files. The Drums will follow the part A or B inputted by the user, this will say whether to play an A or B or A ending or B ending section of a RT. I could make this all up myself to use Biab RTs RDs with Reaper but I would have to map out all the RTs to chord data file. I would rather see PG do this as they already have all this data mapped out in the XT2 ST2. Reaper will playback the Win Mac compressed formats wma & m4a the same with the BBPlugin now works in Reaper playing the source files direct. Please post any feedback how you think it should work and any keyswitches you think it would need to perform Live. I don't play keyboard, I'm not a musician so I'm at a lost to know exactly what you would need ? This is an old one I made for Reaper that used the existing track regions to access different chord sections :
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Here's some info from a wishlist post. Random arranger keyboard video for reference: You can see right hand obviously plays a melody with a pre-selected instrument patch. A style is pre-selected on the keyboard for the accompaniment (similar to how we audition and select styles in BB). The keyboard has a row of buttons to start/stop the accompaniment, to switch between A/B/C/D variations, to increase/decrease tempo, and there may also be special Intro/Outro variations (with predefined chords based on a key) and drum fills that can be triggered and well as rests. To recreate a similar set of features, it could either be built somewhere into BB or perhaps as a standalone app. Before live playing, the following settings could be adjusted: * Tempo * Select style (existing BB popup window) * Mixer (solo/mute/select track/erase track - reuse from BB) * Choose instrument (MIDI patch or an external plugin such as Komplete or Arturia V-Collection or Spitfire) * Choose split point (which is the lowest note that will play a note instead of being recognized as a chord) Prominent buttons in the interface which can be clicked and linked to computer keyboard shortcuts and also MIDI controller buttons (CC mapping) Buttons and possible keyboard shortcuts: * Tempo Up (A) / Down (Z) / Default Recommended Tempo for style (Q or A+Z together) * Play/Pause (SPACE) * Drum Fill (X) * Variation A (1) / B (2) / C (3) / D (4), etc where applicable for multi-styles * Bass vol increment (D) / decrement (C) * Piano vol increment (F) / decrement (V) * Drums vol increment (G) / decrement (B) * Strings vol increment (H) / decrement (N) * Guitar vol increment (J) / decrement (M) Don't read into the keyboard shortcut letters too much, it's more about their relative positions next to each other (i.e. A + Z, D + C are like Up/Down buttons). Perhaps before playing live, users must click a Generate button after selecting a new style. This could generate various temporary WAV files for each real track with every possible chord and variation. Percussive tracks would of course be easier/different. When playing live and you press G+C+E keys on the left side of your MIDI (musical) keyboard, the program would intelligently find the pre-generated section for each real track for the current variation where a C/G and play that instantly (at the next 16th of a bar, now possible with BB 2022). Inspiration for other features/settings could come from analyzing Yamaha/Roland keyboards further. If this were a separate feature I'd honestly pay a one-time extra $40 or $50 for it. If PG-Music wishes, I could mock up a simple UI design for it.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2000
Posts: 1,868
PG Music Developer
|
PG Music Developer
Joined: Jun 2000
Posts: 1,868 |
Doesn't the Conductor Window in BBW already let you go to specific sections during playback by pressing buttons? (and the transitions in BBW seem smooth if setting the "Mode (when to do action)" properly).
Last edited by Jeff Yankauer; 01/04/24 04:36 PM.
Jeff Yankauer
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
I could never get that to work with QWERTY or the midi keyboard input, the GoTo Section works but that's jerky. If it works seamlessly like Reaper's smooth seek you could use the Midi Chord Input detection (Windows > MIDI Chord Detection) to go to any chord section but having only 255 bars, chords and variations would be limited when you first generate up. That's why with userstracks you need more SGUs to give variation because of the 255 limit.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
This is a post by the creator cfillion Use a section source to specify playback start/end time or reverse: local source = reaper.PCM_Source_CreateFromFile(file)
local section = reaper.PCM_Source_CreateFromType('SECTION')
reaper.CF_PCM_Source_SetSectionInfo(section, source, ...)
reaper.PCM_Source_Destroy(source)
local preview = reaper.CF_CreatePreview(section)
reaper.PCM_Source_Destroy(section)
reaper.CF_Preview_SetOutputTrack(preview, nil, track)
reaper.CF_Preview_Play(preview) -- after configuring the preview reaper.CF_PCM_Source_SetSectionInfo(PCM_source section, PCM_source source, number offset, number length, boolean reverse)
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
In the demo script it will load the 1 wma from the RT source files and instantly seek to any chord within it, this just seems to be making things so easy for you thanks to Christian Fillion a fellow Canadian.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Oct 2010
Posts: 30
Enthusiast
|
Enthusiast
Joined: Oct 2010
Posts: 30 |
Very interesting. Thank you for your creative and hard work.
Is it possible to do a version for Studio One users?
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
It's very hard to get any information on Studio One scripting. If you can ask in the Presonus forums you might find someone with information that can help, as here: Studio One Section Transfer You have the Arranger Mode and you have midi chord input detection so creating a script to go to a section (chord) when you input a chord should be possible in Studio One as I have demonstrated in this Reaper Video. You could just use the BBPlugin/s in S1 to generate up all the chord sections you will be using that will correspond to the arranger sections. You can set the arranger sections to Loop so the chord keeps playing until you change chords. Two or more BBPlugin can be used to get more material/chords as you can set Plugin 2 to start on another bar over the 255 limit. When they get the RT source tracks playing direct in the BBPlugin this will be very quick to do. So yes I think post this in the Presonus forum an see if anyone comes back with scripting info on how this may be accomplished. Lawrence used to be the goto guy but I don't see him around anymore.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
This also allows the BBPlugin to play back the "Bass - 1255 Bass, Electric, PopShiningA-B Ev 120.di" track files direct inside the Plugin and follow any varying tempo map as in the demo script you can seek instantly and change the playback rate on the fly.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
For the ReaImGUI Install reapack.com/ > In Reaper menu Extensions > Reapack > Browse packages.. in Filter paste js_ReaScriptAPI right click > Install > Apply for reaper.JS_Dialog_BrowseForOpenFiles
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Using Reaper will allow you to track out the Live Arranger session if need be, that let's you keep arrangements/progression/ideas you come up with on the fly rather than having to type chords in, generate and try.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
From the main Biab forum: Thanks! We are also still working on direct-play for the plugin, which would be a big step for the plugin (all DAWS including Reaper). The Live Arranger idea is great, and hopefully applicable to many DAWS. That will be good if you get the files playing direct inside the plugin, this allowing the plugin to work as a Live Arranger also and being able to record the track's data that was played and then playback or send/transfer/render into the DAW if need be.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jan 2015
Posts: 2,162
Veteran
|
Veteran
Joined: Jan 2015
Posts: 2,162 |
I noticed in some of the videos, some apparent 'glitches' in the sound. Do you know if these are artifacts of the faster generation and arranger behaviour, or if they're glitches in the recording?
Are you aware of any hardware controller for managing the arranger, that could be set up similar to the main live controls of arranger keyboards? If not, do you think there may be some mileage in creating one? Electronics and software are my game, so I wonder if there's an opportunity to produce something, though at my age I'd need to think how such a thing might live on beyond me.
Jazz relative beginner, starting at a much older age than was helpful. AVL:MXE Linux; Windows 11 BIAB2024 Audiophile, a bunch of other software. Kawai MP6, Ui24R, Focusrite Saffire Pro40 and Scarletts .
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
In the Reaper Arranger video it had glitches from screen recording software and trying to capture the video and audio at the same time with the onboard audio device as well as too many other things running at the time, if you try Reaper with the BBPlugin and smooth seek enabled in the prefs/audio/seeking while you play Reaper back with the BBPlugin following then click on another bar and it will go there smoothly. The Arranger script I made simply works by reading the midi chord input and going to a random chord region of the selected color and loop it until another chord is entered it will then to that chord/color region. You can set smooth seek to change on next marker or next bar/s. You should try out the smooth seek using the BBPlugin and you will see how well it works you won't get any glitches. Just generate up all the chords you need 4 or more bars long for each chord. If you use 2 BBPlugins you can have all the blue and blue ending in BBPlugin 1 and all the green and green ending in BBPlugin 2 and Plugin 2 is set to sync start on the bar after BBPlugin 1 ends. You can drag the C7 out into Reaper to get the chord markers, drag the BBPlugin 1 C7 to first bar and BBPlugin 2 C7 to where it starts.
That new RT RD Ketron Event keyboard uses an OS as it has an SSD in it, could be a damn small linux ?
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jan 2015
Posts: 2,162
Veteran
|
Veteran
Joined: Jan 2015
Posts: 2,162 |
In the Reaper Arranger video it had glitches from screen recording software and trying to capture the video and audio That's as I'd expected. I doubted you were tolerating the glitches in real use. I must find some time to have a go. I think I would find it useful. That new RT RD Ketron Event keyboard uses an OS as it has an SSD in it, could be a damn small linux ? It could well be, though there are also true RTOSs out there that might be better still for the job. I have a photo of the insides of the EventX and it has a processor module and a second board pick-a-backed onto a larger board. The CPU board looks like one of these: +++ here +++ There's are some fairly large chips on the other daughter board, possibly a DSP and some RAM. Most other stuff looks like I/O. There's a 240GB SSD drive in the one I saw. One big PCB for the front panel, likely with a bought-in display stuck on it.
Jazz relative beginner, starting at a much older age than was helpful. AVL:MXE Linux; Windows 11 BIAB2024 Audiophile, a bunch of other software. Kawai MP6, Ui24R, Focusrite Saffire Pro40 and Scarletts .
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
I made a video of the smooth seek, so rather than playing the rendered wavs in the SavedTracks folder within the Plugin it's playing all the sections the new way directly in Reaper. VST6-Smooth-Seek.mp4 Those keyboards are around $5000 compared to $569 for Biab. I said years ago to have a hardware version of Biab with an LCD touch Screen.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jan 2015
Posts: 2,162
Veteran
|
Veteran
Joined: Jan 2015
Posts: 2,162 |
I made a video of the smooth seek, so rather than playing the rendered wavs in the SavedTracks folder within the Plugin it's playing all the sections the new way directly in Reaper. VST6-Smooth-Seek.mp4Yes, that sounds fine. I did believe you, though Those keyboards are around $5000 compared to $569 for Biab. I said years ago to have a hardware version of Biab with an LCD touch Screen. Indeed. All the better arranger keyboards are that kind of price. Ketron's SD90 (module, no keyboard) is significantly less and pretty good. I have a touch-screen on my older laptop, though it's a rather short of power for this, the screen's small and beyond the keyboard, so not really ergo-friendly. I have vArranger on it, but don't use vArranger for that reason. My large touchscreen has lost touch, so to speak, but that may be just a USB-cable problem.
Jazz relative beginner, starting at a much older age than was helpful. AVL:MXE Linux; Windows 11 BIAB2024 Audiophile, a bunch of other software. Kawai MP6, Ui24R, Focusrite Saffire Pro40 and Scarletts .
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
Ketron Event Live Drums: 580 Live Drums with a complete Arranger structure (3 Intros, 3 Endings, ABCD, 4 Fills, 4 Breaks). Reverb and 3 band Parametric Equalizer with 10 presets, programmable on each style. Drum Boost. Possibility to load external User Live Drums. Drum Lock. Grooves: 3 x independent Groove sections. Huge library of more than 780 Latin percussions, Electro and Acoustic Drum loops, Single percussion hits. Groove to Variation. Separate volume and controls. Live Guitars: 216 sliced Guitar patterns including Long Chords. Separate volume and controls. Real Chord: More than 300 Real audio accompaniments covering a full chord range (up to 13 different chords). A wide variety of electric, acoustic, and jazz guitars patterns and other orchestral sequences perfectly synchronized to Midi. Dedicated Insert EFX with full editor, programmable for each style. Possibility to load external User Real Chords. Real Bass: 256 Real audio Basses synchronized to Midi. Twin Bass: possibility to switch Midi or Audio on the same style. Support to external User audio Basses. 3 band Parametric Equalizer with 10 Presets, programmable on each style. Possibility to load external User Real Basses.
Compare that with what Biab will give.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jan 2015
Posts: 2,162
Veteran
|
Veteran
Joined: Jan 2015
Posts: 2,162 |
I'm not arguing for or against either BIAB or a hardware arranger here, just comparing some ergonomic factors and wondering in part if there might be enough interested people to justify a hardware button-panel to put the direct arranger buttons close to the player's hands. I'm suspecting not, or perhaps a simple matrix-controller is enough anyway. Akai LPD8, Presonus Atom or some such. Lots of controller keyboards already have a matrix, which also suggests "no real market for such a keypad". My stage piano does not, though.
Where I think there should be be an important comparison is in the reliability/robustness area. Dedicated hardware should be dedicated to the task and not dependent upon what other software is running on a PC, and there are lots of those on most PCs. In principle dedicated hardware should be closer to "bullet proof", but in practice I'm not so sure in practice that it is. There seem to be more than a few bugs in some of these hardware arrangers. No names.
BTW, I'm not sure that comparing things like number of styles really tells the story. One could easily argue that the number of actual styles is number of base styles x number of intros x number of variations x number of endings, even before one starts selecting different styles within a single song or adding intros mid-song.
I think BIAB's strength is the ability to pre-build custom styles and structure for specific songs and assigning those by section-name, rather than having to prompt/remember that the one has, e.g., to "start with intro 2, go to style 2 for the verse, go to style 3 for the bridge, back to style two for the final eight then to ending 4". It gives the potential to have my into, my variations and my ending for each song. Conventional arrangers don't really do that, though customised styles go part way towards it.
I write here with very little actual arranger experience.
Jazz relative beginner, starting at a much older age than was helpful. AVL:MXE Linux; Windows 11 BIAB2024 Audiophile, a bunch of other software. Kawai MP6, Ui24R, Focusrite Saffire Pro40 and Scarletts .
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box VST and Pro Tools/AAX DAW Plugin (Windows)
|
Joined: Jun 2009
Posts: 2,651
Veteran
|
OP
Veteran
Joined: Jun 2009
Posts: 2,651 |
"might be enough interested people to justify a hardware button-panel to put the direct arranger buttons close to the player's hands" Yes that sounds good, have it as optional so you don't need to have it to use the Live Arranger but it will make things easy.
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
Generate Lyrics for your Band-in-a-Box songs with LyricLab!
Need some lyrics to complete your Band-in-a-Box song? LyricLab is here to help!
LyricLab (by Joanne Cooper) is an AI-powered tool designed to quickly create lyrics and chords to fit your music. Just enter a rough idea of your lyrics, and let the AI bring them to life. Once you're happy with the results, simply import the LyricLab file into Band-in-a-Box® 2024 or newer. From there, you can pick your style and generate melodies to match your song’s chords!
Learn more about LyricLab here!
Watch the video.
Band-in-a-Box 2024 Italian for Mac is Here!
Ci siamo dati da fare e abbiamo aggiunto oltre 50 nuove funzionalità e una straordinaria raccolta di nuovi contenuti, tra cui 222 RealTracks, nuovi RealStyles, MIDI SuperTracks, Instrumental Studies, "Songs with Vocals" Artist Performance Sets, Playable RealTracks Set 3, Playable RealDrums Set 2, due nuovi set di "RealDrums Stems", XPro Styles PAK 6, Xtra Styles PAK 17 e altro ancora!
Tutti Pacchetti | Nuove Caratteristiche
Band-in-a-Box® 2024 German for Mac is Here!
Band-in-a-Box® 2024 für Mac 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 & 7, Xtra Styles PAK 17 & 18, und mehr!
Paket | Was ist Neu
Band-in-a-Box® 2024 French for Mac® is Here!
Band-in-a-Box® 2024 apporte plus de 50 fonctions nouvelles ainsi qu'une importante de contenus nouveaux à savoir : 222 RealTracks, des RealStyles nouveaux, des SuperTracks MIDI, des Etudes d'Instruments, des Prestations d'Artistes, des "Morceaux avec Choeurs", un Set 3 de Tracks Jouables, un Set 2 de RealDrums Jouables, deux nouveaux Sets de "RealDrums Stems", des Styles XPro PAK 6 & 7, des Xtra Styles PAK 17 & 18, et bien plus encore!
New! XPro Styles PAK 7 for Band-in-a-Box 2024 for Mac!
We've just released XPro Styles PAK 7 with 100 brand new RealStyles, plus 50 RealTracks and RealDrums that are sure to delight!
With XPro Styles PAK 7 you can expect 25 rock & pop, 25 jazz, and 25 country styles, as well as 25 of this year's wildcard genre: Celtic!
Here's a small sampling of what XPro Styles PAK 7 has to offer: energetic rock jigs, New Orleans funk, lilting jazz waltzes, fast Celtic punk, uptempo train beats, gritty grunge, intense jazz rock, groovy EDM, soulful R&B, soft singer-songwriter pop, country blues rock, and many more!
Special Pricing! Until September 30, 2024, all the XPro Styles PAKs 1 - 7 are on sale for only $29 ea (Reg. $49 ea)! Supercharge your Band-in-a-Box 2024® with XPro Styles PAK 7! Order now!
Learn more and listen to demos of XPro Styles PAKs.
Watch the XPro Styles PAK 7 Overview & Styles Demos video.
XPro Styles PAKs require Band-in-a-Box® 2024 or higher and are compatible with ANY package, including the Pro, MegaPAK, UltraPAK, UltraPAK+, and Audiophile Edition.
New! Xtra Styles PAK 18 for Band-in-a-Box 2024 for Mac!
Xtra Styles PAK 18 for Band-in-a-Box version 2024 is here with 200 brand new styles to take for a spin!
Along with 50 new styles each for the rock & pop, jazz, and country genres, we’ve put together a collection of styles using sounds from the SynthMaster plugin!
In this PAK you'll find: dubby reggae grooves, rootsy Americana, LA jazz pop, driving pop rock, mellow electronica, modern jazz fusion, spacey country ballads, Motown shuffles, energetic EDM, and plenty of synth heavy grooves! Xtra Style PAK 18 features these styles and many, many more!
Special Pricing! Until September 30, 2024, all the Xtra Styles PAKs 1 - 18 are on sale for only $29 ea (Reg. $49 ea)! Expand your Band-in-a-Box 2024® library with Xtra Styles PAK 18! Order now!
Learn more and listen to demos of the Xtra Styles PAK 18 here.
Watch the Xtra Styles PAK 18 Overview & Styles Demos video.
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 18 requires the 2024 UltraPAK/UltraPAK+/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! Xtra Styles PAK 18 for Band-in-a-Box 2024 for Windows!
Xtra Styles PAK 18 for Band-in-a-Box version 2024 is here with 200 brand new styles to take for a spin!
Along with 50 new styles each for the rock & pop, jazz, and country genres, we’ve put together a collection of styles using sounds from the SynthMaster plugin!
In this PAK you'll find: dubby reggae grooves, rootsy Americana, LA jazz pop, driving pop rock, mellow electronica, modern jazz fusion, spacey country ballads, Motown shuffles, energetic EDM, and plenty of synth heavy grooves! Xtra Style PAK 18 features these styles and many, many more!
Special Pricing! Until September 30, 2024, all the Xtra Styles PAKs 1 - 18 are on sale for only $29 ea (Reg. $49 ea)! Expand your Band-in-a-Box 2024® library with Xtra Styles PAK 18! Order now!
Learn more and listen to demos of the Xtra Styles PAK 18 here.
Watch the Xtra Styles PAK 18 Overview & Styles Demos video.
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 18 requires the 2024 UltraPAK/UltraPAK+/Audiophile Edition. They will not work with the Pro or MegaPAK version because they need the RealTracks from the UltraPAK, UltraPAK+, or Audiophile Edition.
|
|
|
|
|
|
|
|
|
|
|
Forums65
Topics82,885
Posts752,976
Members39,023
|
Most Online3,932 Nov 19th, 2024
|
|
|
|
|
|
|
|
|