Log in to post
|
Print Thread |
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
When BiaB generates a MusicXML file for Sinsy, it creates the note and rest durations the same as the BiaB playback. And by default, BiaB generates rests after every non-tied note.
After. Every. Single. Note.
This is wrong for singing synthesis for a number of reasons.
Consider the case of a hyphenated word, such as "HAP-PY". Instead of writing:
HAP- PY
BiaB instead writes:
HAP- [rest] PY
This is obviously wrong. But even putting a rest after each word is wrong:
THIS [rest] AND [rest] THAT
This is partly because there's a lot of co-articulation in singing. If there are rests after every word, it's not going to sound right.
But there's a more subtle problem here. A note doesn't indicate where the syllable starts, but where the vowel of that syllable starts. That means if you have something like this:
[rest] THIS AND THAT
The consonants actually fall on the prior note's timespan:
[rest]+TH IS AND+TH AT
This works great, even if the prior music event was a rest (like it is above). But in order to fit the consonants onto the prior note's timespan, the prior note (or rest) needs to be shortened. With consonants, this is done by shortening the duration of the vowel.
But what if the prior event was a very, very short rest? Whatever doesn't fit is going to be truncated:
[rest]+TH IS [rest] AND (truncated TH) AT
So for the purposes of generating Music XML for vocal synthesis programs to process, BiaB should export the notation as it appears, not as it is played.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: May 2000
Posts: 38,502
Veteran
|
Veteran
Joined: May 2000
Posts: 38,502 |
I would want to try sending a file created in a different program to Sinsy and see what returns.
--Mac
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Dec 2013
Posts: 2,732
Veteran
|
Veteran
Joined: Dec 2013
Posts: 2,732 |
...or simply open the XML file in Notepad and manually edit it. This of course could be very tedious and time consuming.
 Steve BIAB/RB 2022, Pro Tools 2020, Korg N5, JBL LSR 4328 Powered Monitors, AKG/Shure Mics. PC: Win11 PRO, 4 TB M2 SSD, 2 TB HD, 128 GB Memory
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
I should have clarified that I'm not looking for a workaround for this. I probably should have submitted this as a bug report instead of posting it to the forum - sorry! I could edit the MusicXML file by hand and remove the rests, manually adding the time to the preceding note. That would be an interesting experiment, to see if it helped Sinsy generate better output. I'll probably do that if I get some spare time. But my current project is a home-brew voice synthesis program, and I figured it would be neat if it could read BiaB's Music XML files directly. For that, I've come up with a workaround where a rest following a note is automatically assigned to the prior note's duration if the duration is below a certain threshold. It's not optimal, but it works. I'm just noting that understanding Sinsy's output is already difficult, and the addition of rests isn't likely to make the behavior any better. Plus, fixing this would make my life a bit easier.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: May 2000
Posts: 38,502
Veteran
|
Veteran
Joined: May 2000
Posts: 38,502 |
Well, the reason for my question has to do with isolating where exactly these rests emanate from.
Years of exporting MIDI from BB and I've never encountered such rests, so I'm thinking that it might be something that Sinsy does.
--Mac
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: May 2000
Posts: 38,502
Veteran
|
Veteran
Joined: May 2000
Posts: 38,502 |
Just though of something that may be important here.
Check to see if Sinsy is looking for Note Off data.
When the MIDI Standard was written, they included both Note On and Note Off as part of the data stream available.
But they also included Note Duration value.
The greater majority of programs today no longer even bother with the Note Off data, since it is redundant if the Note Duration is sent.
But that Note Off is still part of the MIDI Standard and a programmer who uses what the standard says at face value doesn't realize that, they could write something that is looking for a Note Off value after every Note On...
Perhaps not receiving the Note Off, its coded to use the Rest as a timeout alternative. eek.
HTH,
--Mac
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Jul 2000
Posts: 27,120
Veteran
|
Veteran
Joined: Jul 2000
Posts: 27,120 |
David, first, thank you for your work and continuing interest in Music XML.
If I follow your first paragraph correctly, the Music XML is being produced accurately; it's the way BIAB handles this that is in need of examination. I'm just guessing, but what you describe sounds like a description of how mouse-based data entry works in BIAB, which many of us particularly love over how this is implemented in other software. Of course, we see threads periodically in which someone who doesn't understand asks how to do or not do a tie.
I hope PG Music continues to work on exporting Music XML not just for Sinsy. I only request that it not change the data entry method, assuming I am even correct it's related to what you describe.
BIAB 2025 Win Audiophile. Software: Studio One 7 Pro, Swam horns, Acoustica-7, Notion 6, Song Master Pro, Win 11 Home. Hardware: Intel i9, 32 Gb; Roland Integra-7, Presonus 192 & Faderport 8, Royer 121, Adam Sub8 & Neumann 120 monitors.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
I believe that BiaB has always automatically "humanized" the MIDI playback of notation, since the DOS version. Most music notation programs automatically quantize this difference away for you. But go ahead and open a MIDI track generated by BiaB in RealBand, and you'll see the gaps between the notes. (There is obviously no MIDI instruction for "rest"  ). So it's not surprising that the MusicXML file that BiaB generates has the same behavior. You can open up the MusicXML file that BiaB generates yourself and have a look. It's at: <path to BB>\Data\SRequest\Sound.XMLThe <note> tag is used for both pitches and rests. A rest event is indicated by a <rest/> tag, embedded in the <note> hierarchy. It would be nice if BiaB didn't do this in the first place, even with MIDI. If there's a way to turn this off, I'd appreciate knowing about it! 
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
Hi, Matt.
Thanks, I think the addition of accurate MusicXML will be a great benefit for many BiaB users.
See my explanation above - the MIDI and MusicXML that BiaB generates from notation is not "accurate", in that what is generated does not reflect the notation.
On further thought, I suspect that it's a holdover back when to ensure that monophonic synths got the MIDI NoteOff instruction before sending the NoteOn.
In any event, while most software programs hide these details, it becomes problematic when working with other applications that expect the MusicXML to accurately reflect the original notation.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: May 2000
Posts: 38,502
Veteran
|
Veteran
Joined: May 2000
Posts: 38,502 |
...the MIDI and MusicXML that BiaB generates from notation is not "accurate", in that what is generated does not reflect the notation.
Band in a Box does not generate any Music XML at this point in time. To the best of my knowledge, Band in a Box does not create nor send Note Off data, either. Hence the commonly found stuck synth on strings and other pads when someone hits Stop before the Duration value has ended. We send the file to the Sinsy site and that is where the Music XML generation actually comes from. And I'm thinking that whoever coded the Sinsy site likely used the easily obtainable Standard MIDI File Reference, which still has that almost entirely unused Note Off designation listed from when it was first written. I haven't seen a MIDI file with Note Off data in it that was written since sometime around the mid 80s... --Mac
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
Hi, Mac.
MusicXML allows for what's essentially two different streams of information: the notation of the music, and the playback. The second is essentially equivalent to embedding MIDI information.
BiaB only generates the first (which is good).
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: May 2000
Posts: 38,502
Veteran
|
Veteran
Joined: May 2000
Posts: 38,502 |
And the MIDI that BiaB generates, at least all of it which I've ever examined, which is actually considerable over the years, contains no Note Offs in it.
Do you have an example of any MIDI exported from BB that does?
If so, I'd like to see a copy of that file.
--Mac
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
Answering my own question here... In the Notation view, there is an Opt. button. Pressing that brings up the Notation Window Options. Pressing the More... button the Other Notation Options, which includes Inserted Note Defaults. The default duration for notes is 80%. Simple to fix, right? Unfortunately, not entirely. First of all, setting it to 100% only effects notes added after the change. So you can't fix prior notation by changing things. That's not really a big deal. However, BiaB still generates a generates rests (of duration 1, the smallest tick size). So if I set this, I can filter the rests with much more confidence. But... The behavior is still wrong, because the rests shouldn't be in the MusicXML at all. 
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
Hi, Mac. And the MIDI that BiaB generates, at least all of it which I've ever examined, which is actually considerable over the years, contains no Note Offs in it. SynthFont reports that the MIDI file BiaB generated is filled with NoteOff events. I don't have a hex editor handy, so I can't verify that it's mis-reporting NoteOn events with a velocity of zero (which are functionally equivalent) as NoteOff events. Am I missing something here?
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Jul 2000
Posts: 27,120
Veteran
|
Veteran
Joined: Jul 2000
Posts: 27,120 |
Band in a Box does not generate any Music XML at this point in time.
...
We send the file to the Sinsy site and that is where the Music XML generation actually comes from.
--Mac
From my testing, I'm not sure that is correct. The very first thing that happens when you click on the Vocal Synth button in BIAB is that a file, Sound.XML is created in the folder /bb/Data/SRequest This file appears immediately, well before the Sinsy site completes or maybe even begins its work. It seems to happen so fast that I doubt it is a file being returned by the Sinsy site, but I could be wrong. Once Sinsy has finished, another file called sound.WAV will appear in that same folder. You can see the difference in the time stamps is a minute or two. There are two other files, SRequest Input and Output that show the same time stamp difference. EDIT. To test this, I disconnected my Internet connection. BIAB gave me an error message that it could not process the SRequest, but it did create the Sound.XML file. Thus, BIAB is generating Music XML.
Last edited by Matt Finley; 02/17/14 02:26 PM.
BIAB 2025 Win Audiophile. Software: Studio One 7 Pro, Swam horns, Acoustica-7, Notion 6, Song Master Pro, Win 11 Home. Hardware: Intel i9, 32 Gb; Roland Integra-7, Presonus 192 & Faderport 8, Royer 121, Adam Sub8 & Neumann 120 monitors.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
Ah, I just downloaded MidiYodi, and (unlike SynthFont) it shows the events as NoteOn with velocity of zero. So, you're correct - no NoteOff events. I shouldn't have assumed the SynthFont was reporting the right information, but done a hex dump myself and checked it out myself. Foolish me.  Mind you, NoteOff and NoteOn with a velocity of zero should be functionally equivalent, but whatever. MIDI is a red herring here.
Last edited by dcuny; 02/17/14 02:17 PM.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: May 2000
Posts: 38,502
Veteran
|
Veteran
Joined: May 2000
Posts: 38,502 |
Jes' tryin' ta hep... 
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
The very first thing that happens when you click on the Vocal Synth button in BIAB is that a file, Sound.XML is created in the folder /bb/Data/SRequest That's correct. For my purposes, I'm working with the MusicXML file directly, and it's never being transmitted to Sinsy. So here's my summary at this point: - The duration displayed in the Notation editor does not always match the playback duration.
- Most users are unaware of this default duration.
- This duration is used for creating MIDI and MusicXML output.
- By default, in Notation mode BiaB creates notes with a playback duration of 80%.
- This default duration can be changed to 100%.
- Changing the default duration will not change notes already entered.
- Even with the setting of duration to 100%, BiaB generates small rests in MusicXML output.
- Even minute rests between notes in MusicXML can be problematic for vocal synthesis programs.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Jul 2000
Posts: 27,120
Veteran
|
Veteran
Joined: Jul 2000
Posts: 27,120 |
David, your good work should be brought to the attention of Peter Gannon.
BIAB 2025 Win Audiophile. Software: Studio One 7 Pro, Swam horns, Acoustica-7, Notion 6, Song Master Pro, Win 11 Home. Hardware: Intel i9, 32 Gb; Roland Integra-7, Presonus 192 & Faderport 8, Royer 121, Adam Sub8 & Neumann 120 monitors.
|
|
|
|
|
|
|
|
|
|
|
|
Band-in-a-Box for Windows
|
Joined: Sep 2010
Posts: 7,748
Veteran
|
OP
Veteran
Joined: Sep 2010
Posts: 7,748 |
Jes' tryin' ta hep...  And the help is appreciated! OK, back to coding...
|
|
|
|
|
|
|
|
|
|
|
|
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.
|
|
|
|
|
|
|
|
|
|
|
XPro and Xtra Styles PAKs Special Extended Until August 31st!
XPro & Xtra Styles PAKs Special Extended Until August 31st!
The XPro Styles PAKs and Xtra Styles PAKs special offers are now available until August 31st at 11:59pm PDT!
Ready to take your Band-in-a-Box® 2025 experience to the next level? Now’s the perfect time! Expand your style library with XPro and Xtra Styles PAKs—packed with a wide variety of genres to inspire your next musical creation.
What are XPro Styles and Xtra Styles PAKs?
XPro Styles PAKs are styles that work with any version (Pro, MegaPAK, UltraPAK, UltraPAK+, or Audiophile Edition) of Band-in-a-Box® 2025 (or higher). XPro Styles PAKS 1-9 includes 900 styles!
Xtra Styles PAKs are styles that work with the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box® 2025 (or higher). With over 3,500 styles (and 35 MIDI styles) included in Xtra Styles PAKs 1-20, the possibilities are endless!
Get the XPro Styles PAKs 1 - 9 for only $29 ea (Reg. $49 ea), or get them all in the XPro Styles PAK Bundle for only $149 (reg. $299)! Listen to demos and order now! For Windows or for Mac.
Note: 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.
Get Xtra Styles PAKs 1 - 20 are on special for only $29 each (reg $49), or get all 19 PAKs for $199 (reg $399)! Listen to demos and order now! For Windows or for Mac.
Note: The Xtra Styles require the UltraPAK, UltraPAK+, or Audiophile Edition of Band-in-a-Box®. (Xtra Styles PAK 19 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.
Don’t miss this chance to supercharge your Band-in-a-Box setup—at a great price!
Mac 2025 Special Upgrade Offers Extended Until August 15th!
It's not too late to upgrade to Band-in-a-Box® 2025 for Mac® and save! We've extended our special until August 15, 2025!
We've added many major new features to Band-in-a-Box® 2025 for Mac®, including advanced AI tools like the amazing BB Stem Splitter and AI Lyrics Generator, as well as VST3 plugin support, and Equalize Temp. Plus, there’s a new one-stop MIDI Patches Picker with over 1,100 MIDI patches to choose from, all neatly categorized by GM numbers. The MultiPicker Library is enhanced with tabs for the SongPicker, MIDI Patch Picker, Chord Builder, AI Lyrics Generator, and Song Titles Browser, and the tabs are organized into logical groups. The Audiophile Edition is enhanced with FLAC files , which are 60% smaller than AIFF files while maintaining identical audio quality, and now ships on a fast 1TB SSD, and much more!
Check out all the new features in Band-in-a-Box® 2025 for Mac® here:
Purchase your Band-in-a-Box® 2025 for Mac during our special to save up to 50% off your upgrade purchase and receive a FREE BONUS PAK of amazing new Add-ons. These include the 2025 RealCombos Booster PAK, 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, and more!
Upgrade to the 2025 49-PAK for just $49 and add 20 Bonus Unreleased RealTracks and 20 RealStyles, FLAC Files for the 20 Bonus Unreleased RealTracks, Look Ma! More MIDI 14: SynthMaster, MIDI SuperTracks Set 45: More SynthMaster, Artist Performance Set 18: Songs with Vocals 8, and RealDrums Stems Set 8: Pop, Funk & More with Jerry Roe.
Learn more about the Bonus PAKs!
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.
|
|
|
|
|
|
|
|
|
|
|
Forums58
Topics84,651
Posts782,432
Members39,716
|
Most Online25,754 Jan 24th, 2025
|
|
|
|
|
|
|
|
|