@d-healey
Fantastic, thanks for the help - your video on building an entry level sequencer was my introductory point for this, you're the man.
Best posts made by Blake.Manternach
-
RE: Timer controlling both UI and Audio threads
Latest posts made by Blake.Manternach
-
RE: TransportHandler SetEnableGrid()
@Lindon What does this mean - "Make it Tempo Sync" - and bigger picture, does this mean what i'm trying to accomplish with "SetEnableGrid" is not possible by subdividing the incoming tempo by quarter notes, eighth, sixteenth, triplets and eigthnote triplets?
-
Overlapping Videos
Hi,
I'd like to have a few different videos in my plugin overlapping each other, each one with a bit of transparency so that you can see all 4 of them overlapped with each other. Does anyone know if something like this would be possible in HISE?
-
RE: TransportHandler SetEnableGrid()
@Lindon Any ideas? You had introduced me to this SetEnableGrid in another thread.
-
TransportHandler SetEnableGrid()
Hi - I'm trying to sync to the daw using SetEnableGrid and getting unexpected results.
I have the daw set as 4/4 120bpm . Here's the pattern I'm given based on the code I input:
th.setEnableGrid(true,4); // Gives me 3 over 4 (3 beats over 4 quarter notes)
th.setEnableGrid(true,2); // Gives me 2 over 4 (2 beats over 4 quarter notes)
th.setEnableGrid(true,3); // Gives me 8 over 12 (8 beats over 12 quarter notes)How does this work? I simply want to achieve breaking the grid down into quarter notes, eighth notes, sixteenths, and eighth notes however this doesn't seem to work as I expected. I thought setEnableGrid(true,4) would give me quarter notes?
-
RE: Sub dividing DAW synced timer
@Lindon ah had no idea that's what the grid did, thank you so much for the clarification
-
RE: Sub dividing DAW synced timer
@Lindon
Yes that'd be a work around, to just subdivide using the DAW however I'd like to accomplish this without the DAW if possible - so if the DAW grid is set to 4/4 I want to be able to subdivide eighth notes or 16ths based on that....I'm imagining the only way to accomplish this is going to be to have my own timer object running in conjunction w/ the DAW and trying to keep it perfectly in sync w/ the DAW however I'm nervous it could potentially fall out of sync after some time especially after tempo changes if they were to happen live within the DAW. Maybe this just straight up isn't possible and what you're suggesting by setting the grid in the DAW is the only workaround?@d-healey any ideas on this?
-
Sub dividing DAW synced timer
Hello,
I've been working on a sequencer plugin for some time, I've got a working POC that syncs with the daw by using a transport handler and the on grid callback to play midi notes every time the daw increments a step. However, I want my plugin to have the ability to play 8th notes and triplets and subdivide the beats coming from the daw...any ideas on how to implement this? I'm assuming I'll have to switch from using transport handler completely to a timer object but wondering how best to keep that timer object in sync with the Daws metronome including live tempo changes
-
RE: How to export sample map as hr1 file?
@d-healey Thank you that helps - can you clarify what you mean by "if you are sending files to other users" - what other option do I have? How do I include the sample map w/ the exported VST?
-
How to export sample map as hr1 file?
Not sure if I'm asking the correct question here - I have a sample map for my plugin, I export the plugin and when I open it in a DAW it says please load the sample files, looking for a ch1 file. I'm looking at other forum posts about this and it says to go export -> Export Sample files. I simply do not have this option in hise? I'm sure i'm doing something wrong, here's what the project looks like: