Search found 335 matches
ReBuzz is Now Open Source!
Hello everyone, Due to time constraints, and on the other hand strong interest towards the project, I’ve decided to open source ReBuzz. This move aims to encourage developers to contribute and help make ReBuzz even more awesome. How You Can Help Contribute : Whether you’re a seasoned developer or ju...
ReBuzz
Say hi to ReBuzz, a new modular digital audio workstation (DAW) built upon the foundation of Jeskola Buzz software. Written in C#, ReBuzz combines modern features with the beloved workflow of its predecessor. While it’s still in development, users should exercise some caution regarding stability and...
- Wed Mar 22, 2023 7:38 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
So I'm developing my "wireless" set of machines. The idea is that you can send audio via a "sender", and receive that audio via a "receiver". Basically an updated version of the aux machines. Nice! But when I load the demo song back up, the parameters of my sender mach...
- Thu Jan 05, 2023 6:42 pm
- Forum: Users
- Topic: BuzzSetup x64 2022 Edition
- Replies: 48
- Views: 31668
Re: BuzzSetup x64 2022 Edition
Some fixes. BuzzEngine32 might not behave exactly like buzz32, looking forward to try mixio 2.0
- Thu Jan 05, 2023 6:32 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
Yup. Fixed.synthphase wrote: ↑Thu Dec 22, 2022 12:16 am Ok I found out what does it. It's in the clone machine function somewhere.
- Fri Dec 16, 2022 5:30 pm
- Forum: Users
- Topic: BuzzSetup x64 2022 Edition
- Replies: 48
- Views: 31668
Re: BuzzSetup x64 2022 Edition
I'm a bit disturbed without it. No need to be disturbed anymore. Can we use PatternXP Mod here ? I use it a lot and I miss it. Yes, just use 64bit version and install it as instructed. As I wanted to make new video tutorials for Buzz (in particular how to install it, same for machines and vst), do ...
- Fri Dec 16, 2022 5:22 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
Should work fine on Windows 7 (Windows 11 here). Let me know if you can reproduce the issue.
- Sat Oct 22, 2022 3:40 pm
- Forum: Devs
- Topic: Managed machine right-click menu commands
- Replies: 2
- Views: 3595
Re: Managed machine right-click menu commands
You need to create 'Commands' property to your main buzz machine class aka the one that implements IBuzzMachine. To handle the command, you create 'SimpleCommand' like the one below. Then you just replace the MessageBox to you method or {} code block. public IEnumerable<IMenuItem> Commands { get { y...
- Thu Oct 13, 2022 4:26 pm
- Forum: Users
- Topic: BuzzSetup x64 2022 Edition
- Replies: 48
- Views: 31668
BuzzSetup x64 2022 Edition
BuzzSetup x64 2022 Edition 1.0 Vertical lines in sequencer Snap to grid in Machine View JoaCHIP Quick Meter Fixes Release Candidate Use VST in Signal Analysis Window (MachineView->Settings->SignalAnalysisMode) Preview 4 Few 64bit machines included: Matilde2, FSM Infector... New Signal Analysis Wind...
- Wed Oct 05, 2022 4:52 pm
- Forum: Devs
- Topic: Need help with a C#/WPF/XAML problem
- Replies: 2
- Views: 3096
Re: Need help with a C#/WPF/XAML problem
Not sure if this works but you could create a helper public class TreeHelper : INotifyPropertyChanged { public event PropertyChangedEventHandler PropertyChanged; public bool GotValue { get; set; } public TreeHelper(bool leftSide) { this.leftSide = leftSide; } ... And then create couple of these thin...
- Fri Sep 23, 2022 2:11 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
- The status bar has no context readout. Should be fixed. Old statusbar and toolbar are there if you switch between machines that have different editor. You can hide legacy toolbars from MPE settings when you fully switch to MPE. - I absolutely love the Ctrl + 1 - 0 function and I imagine it'll mak...
- Fri Sep 02, 2022 3:15 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
Ctrl+- combo is somehow reserved and can't be used. I could add context menu shortcuts, but for now you can use 'Tracks' thingy in the toolbar.
- Fri Sep 02, 2022 11:02 am
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
- Recording bug
- Import/Export Pattern(s)
- Mon Aug 22, 2022 2:54 pm
- Forum: Devs
- Topic: Master Clock / Song Position
- Replies: 4
- Views: 3857
Re: Master Clock / Song Position
I'd assume GetSongPosition() returns current tick. On the managed side you can do this to get position in samples: double avgSamplesPerTick = (60.0 * host.MasterInfo.SamplesPerSec) / (host.MasterInfo.BeatsPerMin * host.MasterInfo.TicksPerBeat); int pos = (int)(song.PlayPosition * avgSamplesPerTick +...
- Thu Aug 11, 2022 4:58 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Re: Modern Pattern Editor
- Fixes
- Now you can add chord sets. See PEChords.xml
- Sun Aug 07, 2022 5:25 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
- Fri Aug 05, 2022 5:56 pm
- Forum: Users
- Topic: Modern Pattern Editor
- Replies: 22
- Views: 21731
Modern Pattern Editor
mpe.png Modern Pattern Editor 0.9.1.1 Based on "Ctrl-Q" code Editing features similar to Pattern XP Beat subdivision Themes & UI customization Chords Keyboard Mapping Check help/settings to learn more Edit gear.xml (make a copy of gear_defaults.xml if the file does not exist) to somet...
- Mon Aug 01, 2022 4:08 pm
- Forum: Users
- Topic: PatternXP RE
- Replies: 36
- Views: 19981
Re: PatternXP RE
I've had some intermittent crashes with PatternXP RE when undoing a lot of changes to a pattern. I can't pin down exactly how many undo's will crash it, but I know it's a lot, like over 100. Is there a cap on number of undo's supported? The way undo/redo works has not been changed from the original...
- Wed Jul 27, 2022 1:15 pm
- Forum: Devs
- Topic: Modern Sequence Editor
- Replies: 131
- Views: 109733
Re: Modern Sequence Editor
Update: I added rectangle behind pattern name to make it easier to read. You can disable it from settings.