@pes Never mind i´ve found this: https://forum.hise.audio/topic/314/note-panning
Posts
-
RE: Tune/Pan/Volume/Filter on a per-note basis
-
RE: Tune/Pan/Volume/Filter on a per-note basis
@Christoph-Hart: I´m trying to pan each voice depending on the note number, but in the »script voice start modulator« I could only find access to gain- and pitch-value:
function onVoiceStart(voiceIndex) { Synth.setVoiceGainValue(int voiceIndex, float gainValue); Synth.setVoicePitchValue(int voiceIndex, double pitchValue); }
Do you have an example how I can change panning?
-
RE: How to open url with default browser from plugin?
@Dominik-Mayer thanks, this solved my follow up question!
-
How to open url with default browser from plugin?
Hi, how can I open a url in the os default-browser from plugin?
-
RE: Callbacks stop working after rendering audio
@Christoph-Hart : Works perfectly. Thanks Christoph!
-
RE: Callbacks stop working after rendering audio
@Christoph-Hart: It´s happening in the 2.0.0 release you released just before ADC. I will recompile and test with the latest commit on next tuesday and let you know.
-
RE: Callbacks stop working after rendering audio
@Christoph-Hart: Could you find something?
-
RE: Callbacks stop working after rendering audio
Shure!
Compiled Plugin.
AU and VST. -
RE: Callbacks stop working after rendering audio
Development Version from last Tuesday:
Version 1.6.0
Build: 650 -
Callbacks stop working after rendering audio
Hi,
callbacks stop working after rendering audio to disk in Logic 9.3.3 and Ableton Live 9.7.7 running Mac 10.11.2.
After closing and reopening the project, callbacks work fine again.Quick hise-snippet to confirm:
HiseSnippet 1052.3oc4W0saaaCElx1bH1ctXEnCXWJDrg5f0EXmkstghg53+JLZShQj6O2UvHQaSDIRMJJuYTTf8lrWo8nz2fsCEksjaTcsW1FF1zEFgmy4i76b3GOjYjT3RihDRjU0wKBoHqOF6rfql0cFgwQC6gr1CORRinJTmEgjnHpGxxp7i0dspVAk781G0g3S3tzLSHzyELW5SYALUl0QseBy2e.wiNlEjK5iaOzUv6J7Ew.SJiahBItWQlROinCqDFY8Q88XJgzQQTzHjUkNBuENyD+D2D+yYQrK8o5AsPNvDYLOP36oYr1Jp6Llu2nkYbDBYgGkk+kM4+cwmx7XqrmUG9jDG1YHxWOrJsI50JO8ZVH8ZVD8rxQuJF5cGriqjEpx7n41svC4JpbBA1BxSKSrnR+pEtq.hfqNLfbEcfDFrBQiiZ1791vOG7v50pWC1HhT1yIR6wDfxsr+A6kXmRUcEAgBNLnw9F26aPw39LN0dRL2UwDbaAuSrRI3szXkB+FtKAdeXt8ioGX+550rgOyzbHnvZbu4lxz8VFyC0ATu1aRVhhYQ5xr+A5YHcw5R78uDDPMdWVn4ZNJdlPQOm23fZutV0Zu4ZdlLoHWoSkOUVjWstVtAXM3wAWRkKSvz3fs200O32u9Iu710TRxEnfOjyTmGR4uOQOJsNB5qRojBBUknttcp5xT0PLPDUEmVBQILN+gdzJ3ULvqmBOYKMA8dXy166BFg7HJBx5KvGc7gq+M+b3mIeo9O+9tIiQnmMrmNbPRmRdHgBoRESWqr5QmCsZLmOph6QitRIBSxtTUxJBtw76mWQueoS6EYb8AsQWel1PpladdR944EsQW+7LzUQ3E6STq2pQ2eM0AHeV6Ls9bKOhoVjeq3F2+oPkxVR26fGwTtyJlukJfuZo2ey7Msadcb+ISntpLxVAO3k+0159CQkaanxsvNPGxjKWSHxmlL19Ej4T6GS4TotntgKY+ss8R1vs9R1ycUvpOVR3Qghn0lXGZ.aLH4ixa7YQvUGze7B8lbd6cEDYgtd6iF.4XgXbHpXYhZ4j.QLWsl5n7VukrCW1W4eMW1eSNrcy6MTd6n6G38HUWxQGVPnOsOeN0G5Im1PnGcBI1WsxZdRdpfKBmI3L2764WPUR1zoTYdpWX9bhRA2smY4tsuf5SI40ued6mB5NhDJSz+jkhVaeoXSaWeF1PWa8YQ6+azRu7+OaoegHVw3SOk.BU3Nd7YwANPqTWJvDNm5qe1lUIc6Py3l5wldobujA+N7k5rkdrUpyVKc9OxZDPbkhW4Zd6lVKuWhEHu4I+2VUwmpGau5Qa5ZS.zN7Utt5h8WAUmhQbzNi3q2YDGuyH9lcFw2tyHdvNi361.B8cOmDqDAlidfgQ8Sd.rkUet9QlIpbze.nA7q.L
Is there anything I can do for the user to not restart the project after rendering to audio?
Cheers
P -
RE: How to update/change Tile data?
@staiff thanks a lot!!! this drove me crazy like... you saved my day, MERCI BEAUCOUP!!!!
-
How to update/change Tile data?
Hi,
I´ve tried to set the data values for Tiles like the keyboard-tile:
{ "KeyWidth": 13, "DisplayOctaveNumber": false, "LowKey": 66, "HiKey": 127, "CustomGraphics": false, "DefaultAppearance": true, "BlackKeyRatio": 0.69999999, "ToggleMode": false, "MidiChannel": 1 }
I tried:
- the property editor
- json editor (cmd+j)
- Code:
const var myTile = Content.get('myKeyboardTile'); myKeyboardTile.setContentData({ "HiKey": 111, });
Nothing works.
The data switches back to previous data all the time.
I´ve updated HISE from the development branch.What am I doing wrong?
Cheers
P