Impulses are handled separately from samples.
Controversial posts made by d.healey
-
RE: Sampler Instrument without hr files
-
RE: Make expansion hr without samples
@christoph-hart said in Make expansion hr without samples:
So I guess it's queued and executed sequentially.
Yep I just tested it and that seems to be true. I shall roll my own system :)
-
RE: New local LookAndFeel objects
@christoph-hart Doesn't seem to. This gives no output and the keyboard is unaffected.
const laf = Content.createLocalLookAndFeel(); const var FloatingTile1 = Content.getComponent("FloatingTile1"); FloatingTile1.setLocalLookAndFeel(laf); laf.registerFunction("drawBlackNote", function(g, obj) { Console.print(trace(obj)); });
-
RE: Website name or resource for Scale Chord Guide
@DabDab There is an almost infinite number of chords, so start with triads, sus, and 7ths...
Major triad = 1, 3, 5
Minor triad = 1, b3, 5
Sus 2 = 1, 2, 5
Sus 4 = 1, 4, 5Add a major or a minor seventh to any of the above and now you've got jazz.
-
RE: Website name or resource for Scale Chord Guide
@DabDab said in Website name or resource for Scale Chord Guide:
I want to make a simple chord or Scale detection engine
@DabDab also said in Website name or resource for Scale Chord Guide:
I want more advanced scales names and intervals.
I think Google is the best resource here
-
RE: MIDI out?
@ulrik Now Christoph has implemented MIDI out
https://github.com/christophhart/HISE/commit/65cf260b7057853c187d4a4ac1147707a83bb5c0
-
RE: Sliderpack resize "issues"
@DanH If you want them to be completely linked, so that changing one will always change the others, then you can use a data object.
HiseSnippet 879.3ocuVstaSCCE1taFQKWDCwCPz9Um.pZKitMgPqqWFTfsTsNXf3GSdItslkX243LnfPhGEdm3Eg2.33jrlTnL1pDjeT0yU+cN9juS5pjNrf.oBgyu+3QLD95jdiE5gMGR4BTmVH7MI6PCzLkUrpFiGQCBXtHLdgmXTfyuHJ546a1f5QENrTUHzqjbG1K39bcp1t0eN2yaapKaeteFuWsdGGonozSFB3YARYzHpywzArcoF2xQP3qz1kqkpdZplE.9zP5Nt2P46Ew9+Jd.+HOlQnBpGjnX0nlC4dtcOqVCPH7hcSq7Ehq76P1g6xmnOsCbqHCVoQjsGfycdPpxk.R3LPhDCokH8bT7Q5TKF7bMRGAbgzmBs5rPY2P+ddbWlpKz1.nPvXnqFmATtugIMkPbBcIe5wrsUfvj7TrV4x2yB9YkGUn.bIDnsBljpVTM05wVsEC3BVIGECpzsDt6wFvMCF8lxwhYRwoTkUp0JPNNCACX5lR+QRAHTb4L9rLDcFwRJVelZeYTlmFQ+oio5E3XpN8wT8ubL8CENZtTXIE6J0LaQwUJ7oB4K74BV+po98moMCfTROOlZllMuGnNu.KJB8OhotGTqdgrINBywSO8ckK1zmSb+IiiRQGAWaOhkHuszy0LUY9+uOqhRZvvTatDDBPQGMyd6jY1z1KhCI5FjLWqnnxvLglGRlKzlQ32RpsZI3o+c+HuwAq2buAmL1V6t+Su66Zbf8ZF4Pau23s5Fu19YGUqI35o1GX+r013n0EmViexSZqsqvaTciVFsF6OvNJekhw6kDjU+uCxW1wLvYXBRZuPKeDSo4laVbK1o.UZLuPdRKVvwZ4nn9ex.9k6F3CS3c+Js93TR3MqilqLVMSF+xTYzsNJCy1hwU.voJcC8n5oIZMaTRL.y+SwtY3pDAb83rabtDrukOW12KJDWhzkqcFNaLlaFXz7Jx+.Llry5Fj186ybzo.bQx1uddWP8WN98jgZtXvNTshCW1Dy9FXUsCCNcgf4EsxImgcHVtrQ1zA5wDtQB+.dRLVYx9IvXkyLh7oNJ4gNwutZ1Jd0HM.lDQeDPd3qQ.YqTJDR4RkQ9vB5CcbLk+8ABqYGS04HlGLGwr5bDyCmiXpMGwr1bDy5maLluMZqPszO90APQ21Q7XXbaAElrhlBQ+DmO+Ms
-
RE: HiSE not responding when loading 5g+ of samples
@rcjach said in HiSE not responding when loading 5g+ of samples:
Is there a better way to handle that?
Yes!
You need to restructure your project.
There are 4 ways to separate samples:
- Multiple samplers
- Multiple groups
- Velocity
- Note number
Which one to choose depends on the situation. For a guitar I separate each string, rr, and up/down by velocity and each dynamic by rr group. But there are other ways to do this of course.
I'll try installing VS to compile the newest version of HiSE, though I'm constantly running out of hard drive space...
You should only have one copy of the HISE source code on your system.
-
RE: [bug] Changing container channel amount = crash
@Lindon I'm using a version from last week.
-
RE: Interplugin communication
@Lindon said in Interplugin communication:
we could all agree a spot(folder/directory/file location) to use...and a file format ..then poll it for messages..
That would work for static data in deferred callbacks but wouldn't be useful for real-time. The thing that got me thinking about this is connecting up different string libraries for divisi and having them auto-split the MIDI parts between different plugins. This is possible in Kontakt is several NKIs are housed in the same instance.