Previous Thread
Index
Next Thread
Print Thread
Go To
Band-in-a-Box Wishlist
Joined: Oct 2008
Posts: 55
L
Lazarus Offline OP
Enthusiast
OP Offline
Enthusiast
L
Joined: Oct 2008
Posts: 55
Apologies if this has already been posted by someone else...

I've started using the plugin. It's been there for years but one of the things that stops me is that it doesn't appear to have one of the songwriting features I like best in the main program:

I like to experiment with chords on my keyboard and, when I find one I like, press Ctrl + Enter and BIAB puts it in the current bar and tells me what it is.

I would like to be able to write songs using the plugin. If it had more of the main program's features like this one, it might suit my workflow.

If this is already possible in the plugin, please let me know.

I use Presonus Studio One. Is there a way to transfer BIAB chords from the BIAB chord sheet into the Presonus chord track or the other way round?

Thanks

Band-in-a-Box Wishlist
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Originally Posted By: Lazarus
..I use Presonus Studio One. Is there a way to transfer BIAB chords from the BIAB chord sheet into the Presonus chord track or the other way round?....

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

You can also enter chords in Biab, copy then paste into the BBPlugin.

Band-in-a-Box Wishlist
Joined: Oct 2008
Posts: 55
L
Lazarus Offline OP
Enthusiast
OP Offline
Enthusiast
L
Joined: Oct 2008
Posts: 55
Thanks Pipeline. Very helpful.

Band-in-a-Box Wishlist
Joined: Oct 2008
Posts: 55
L
Lazarus Offline OP
Enthusiast
OP Offline
Enthusiast
L
Joined: Oct 2008
Posts: 55
Originally Posted By: Lazarus


I like to experiment with chords on my keyboard and, when I find one I like, press Ctrl + Enter and BIAB puts it in the current bar and tells me what it is.


I raised this question with PG Tech Support. They wrote:

"The BIAB plugin does not support key commands like Ctrl-Enter, as most DAWs intercept the keyboard and do not pass most keyboard commands like that along to any plugin. Ctrl-Enter is not necessary to enter chords - simply type the chord and press Enter, or press left/right/up/down to move between cells when entering chords."

I do realise that you can enter chords by typing the chord name but, in many cases, when experimenting with more complex chords (e.g. descending progressions) I don't know the names of all the more complex chords but it's very handy that the BIAB main program can recognise chords via MIDI keyboard. In the main program you do this by pressing Control + Enter. I would like this function in the plugin. If that's not possible with Ctrl + Enter then I would like some other way to have this MIDI chord recognition function for chord entry in the DAW plugin.

Band-in-a-Box Wishlist
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
The BBPlugin has midi input so that should not be a problem.
If they use the same chord input recognition method as Biab uses.
I did make one up for Biab, but it uses the built in recognition.
https://www.pgmusic.com/forums/ubbthreads.php?ubb=showflat&Number=573570

Attached Files (Click to download or enlarge) (Only available when you are logged in)
BBvst-midi-in.png (11.42 KB, 61 downloads)
Band-in-a-Box Wishlist
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
There is a workaround until they implement:
If you have Biab running the DAW small always on top mode,
your keyboard chords will be inputted to that,
you can use AutoHotkey to copy that chord to the clipboard then paste into the BBPlugin.
So you play the chord press a hotkey that will copy it from Biab to BBPlugin.

Band-in-a-Box Wishlist
Joined: Oct 2008
Posts: 55
L
Lazarus Offline OP
Enthusiast
OP Offline
Enthusiast
L
Joined: Oct 2008
Posts: 55
Thanks.

Yes, I think I'm going to have to keep working in the main program in parallel with my DAW until BIAB's songwriting features I like are included in the plugin.

Band-in-a-Box Wishlist
Joined: Dec 2003
Posts: 21,042
Veteran
Offline
Veteran
Joined: Dec 2003
Posts: 21,042
Originally Posted By: Lazarus
Thanks.

Yes, I think I'm going to have to keep working in the main program in parallel with my DAW until BIAB's songwriting features I like are included in the plugin.


I agree. That's what I'm doing also.


My goal this weekend is to move just enough each day so that no one pokes me to see if I'm dead or not.

64 bit Win 10 Pro, the latest BiaB/RB, Roland Octa-Capture audio interface, a ton of software/hardware
Band-in-a-Box Wishlist
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
It's got the code in there to output a chord name to midi notes just needs the other way around.

Band-in-a-Box Wishlist
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
Try this
Download https://www.autohotkey.com/
If you have Biab running As Administrator go to the install folder
C:\Program Files\AutoHotkey and set AutoHotkey.exe to Run As Administrator.
Remove the .mp4 from Biab Copy Midi Chord Input.ahk.mp4 unzip and run.
It will run in the system tray "H" you can right click to exit.
The hotkey is F2 but you can change it to what you like.
Open Biab and make it small, set your midi keyboard input,
Window menu > Midi Chord Detection > Midi Chord Detection
The Sleep, 1000 is the delay from when it has copied the chord till it sends paste to where you have clicked in the BBPlugin chord sheet.
So you play the chord
hit F2
click in the BBPlugin chord sheet.

I will try and make one to do this automatically without Biab, so as you hit the chord on your keyboard it will automatically go in.
winActivate, ahk_class CCLShadowWindowClass > this is to activate the Studio One Plugin window. If it's in another DAW it can be set to that.
To get it to move to the next bar put another
Send, {RIGHT}

Code:
#NoEnv
#SingleInstance Force

F2::
winactivate, ahk_class ahk_class TChordDisplayDlg
Send, {TAB}
Sleep, 100
Send, +{TAB}
Sleep, 100
Send, ^C
Sleep, 1000
winactivate, ahk_class CCLShadowWindowClass
Send, %Clipboard%
Send, {RIGHT}
Return

If you want to send to Reaper (the chord will go in without clicking on the sheet in Reaper):
Code:
#NoEnv
#SingleInstance Force

F2::
winactivate, ahk_class ahk_class TChordDisplayDlg
Send, {TAB}
Sleep, 100
Send, +{TAB}
Sleep, 100
Send, ^C
Sleep, 300
winActivate, ahk_class #32770 
Send, %Clipboard%
Send, {RIGHT}

Return

Attached Files (Click to download or enlarge) (Only available when you are logged in)
Biab Copy Midi Chord Input.ahk.mp4 (249 Bytes, 25 downloads)
S1-BBvst-Send-Midi-Chords.gif (165.16 KB, 37 downloads)
Last edited by Pipeline; 11/07/21 08:05 PM.
Band-in-a-Box Wishlist
Joined: Oct 2008
Posts: 55
L
Lazarus Offline OP
Enthusiast
OP Offline
Enthusiast
L
Joined: Oct 2008
Posts: 55
Thanks very much for that.

I checked out Autohotkey and was uneasy about it being used by malware...

https://thehackernews.com/2021/05/experts-warn-about-ongoing-autohotkey.html

so I think I will keep the main BIAB program open and use that for chord detection and then just write the chord name detected into the DAW plugin.

I'll probably carry on using the main program anyway for songwriting because it's so much quicker to experiment with alternative styles without having to render and drag out as in the plugin. And it has other features that I miss in the plugin.

Thanks again for your helpful suggestions.

Band-in-a-Box Wishlist
Joined: Feb 2015
Posts: 7,954
P
Veteran
Offline
Veteran
P
Joined: Feb 2015
Posts: 7,954
That makes not difference if you have AutoHotkey installed or not as it's a script that is complied to an exe and does not require AutoHotkey to be installed, it's self contained:
"The RAT delivery campaign starts from an AutoHotKey (AHK) compiled script," the researchers noted. "This is a standalone executable that contains the following: the AHK interpreter, the AHK script, and any files it has incorporated via the FileInstall command. In this campaign, the attackers incorporate malicious scripts/executables alongside a legitimate application to disguise their intentions."

It's the same as saying I won't to use Delphi or C++ or Lua or bat as they can be used to make viruses.
What is posted above for Biab is a text file that you can read.

There are millions of users using it https://www.autohotkey.com/boards/

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 User Video Tutorials!

If you've reviewed our Support page, you've probably noticed the Videos page, which separates our Band-in-a-Box® tutorial videos by category: Overview, VST DAW Plugin, Setup, Beginner, Intermediate, Advanced, and there's even an Archive category to go down memory lane... (You'll also find these videos on our YouTube Channel.)

It's always great to hear how other Band-in-a-Box® users create their songs, especially when they explain in detail what they're doing. Like Henry Clarke's YouTube Channel, Henry Clarke - Senior Musicians Unite! There you'll find his ALL Band-in-a-Box Tutorials playlist with over 50 videos! His top-three most watched videos include "How to Get Started with Band-in-a-Box," "How I use the Audio Chord Wizard in Band-in-a-Box," and "How to Create An Effective Solo Using Band-in-a-Box" - however he touches on many other topics and also demonstrates his own Band-in-a-Box® songs in the Band-in-a-Box Created Songs playlist!

You're guaranteed to find some helpful videos when you visit Henry Clarke's channel!

Band-in-a-Box® 2024 Italian for Windows 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 French for Windows 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, des Xtra Styles PAK 17 et bien plus encore!

Tous Packages | Nouvelles Fonctionnalités

Video: Making a Song with Band-in-a-Box®, ChatGPT, and Synth V

Take your Band-in-a-Box® project to a whole new level when you incorporate ChatGPT and Synth V to add lyrics and vocals to your song!

We wanted to demonstrate how this is done with our video, where we show you how to go from nothing to a finished "radio ready" modern pop song by combining the features of Band-in-a-Box®, ChatGPT, and Synth V!

Listen to the finished song, so you get a listen to the finished product: https://demos.pgmusic.com/misc/behindthefame.m4a

If you like it, watch the video. Either way, let's hear your comments!

Henry Clarke: Revolutionize Your Band-in-Box® Tracks with Regenerating Function

One of the new features added with Band-in-Box® 2024 is the Tracks Window, which will look familiar if you've worked with other DAWs.

Henry Clarke explains why he loves the Re-generation function within the Tracks Window in their video Revolutionize Your Band-in-Box® Tracks with Regenerating Function.

Watch video.

Learn even more about what the Tracks Window can do with our video Band-in-a-Box® 2024: The Tracks Window.

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

Forum Statistics
Forums66
Topics81,970
Posts739,492
Members38,627
Most Online2,537
Jan 19th, 2020
Newest Members
Lzn, The Rock Opera, Nplus, natescape, JDC
38,626 Registered Users
Top Posters(30 Days)
MarioD 148
musocity 133
rsdean 99
DC Ron 97
dcuny 96
Today's Birthdays
Curmudgeon, Romain, rwl7532
Powered by UBB.threads™ PHP Forum Software 7.7.5