Midi Player?
-
the midi player has being introduce to HISE but it only plays 1 bar of the midi file loop, and does anybody has any idea of how to use it within the plugin, I mean how do you incorporate it into it.
Thanks in advance...
-
Id be interested in an example file as well =)
-
I'll write a proper documentation for the MIDI Player ecosystem when I merge it back to the master branch, it's not 100% finalised yet.
This opens a can of new possibilities, you can embed MIDI files, play them back, modify them using scripting calls, you can even build your own piano roll from a script panel.
-
@Christoph-Hart can't wait .
Thanks
-
@Christoph-Hart said in Midi Player?:
I'll write a proper documentation for the MIDI Player ecosystem when I merge it back to the master branch, it's not 100% finalised yet.
This opens a can of new possibilities, you can embed MIDI files, play them back, modify them using scripting calls, you can even build your own piano roll from a script panel.
Excited to see how this works =)
-
Excited for this too
-
Nothing Yet even in the new version (2.1.0) of HISE? @Christoph-Hart ???
-
Sure it's there.
-
@Christoph-Hart but it only play 1 bar, and the example you said you'll do?
-
@Christoph-Hart said in Midi Player?:
I'll write a proper documentation for the MIDI Player ecosystem when I merge it back to the master branch, it's not 100% finalised yet.
This opens a can of new possibilities, you can embed MIDI files, play them back, modify them using scripting calls, you can even build your own piano roll from a script panel.This?
-
@Christoph-Hart any chance you can throw together some quick notes on this function? I ready to use this in my next project.
-
@dustbro Following
-
@Dominik-Mayer is closing in on the new documentation system and I‘ll make sure it contains a few words about the Midi Player.
-
@Christoph-Hart yes!
-
@Christoph-Hart Is there a way to add multiple events to a track? I'd love to see a snip on how you would paint a timeline as well
-
@dustbro said in Midi Player?:
Is there a way to add multiple events to a track? I'
Yes, but I realise there is one puzzle piece missing.
- Create a list of
MessageHolders
which contain the MIDI messages - Set the MIDI properties for each message
- Call
flush()
to pass it to the MIDI player.
But you can't set the Type for the
MessageHolder
object (it was initially created to hold a reference to actual MIDI input so there was no need to change its type, but now we needMessageHolder.setType(MessageHolder.NoteOn);
What do you mean with timeline? Any graphic representation grabs the rectangle list from the MIDI player, then applies some transformations and displays the information in some way, so if you can show me an example I can check how to realise it.
- Create a list of
-
@Christoph-Hart I'm trying to incorporate this into a drum sampler...
So file browser to drag n drop midi into a player, and an associated midi track to arrange parts. -
Alright, a snippet how to use the MIDI API to create notes programatically is available here:
https://docs.hise.audio/tutorials/recipes/event-processing/create-midi-sequence.html
Now the other thing you want to achieve is a little bit more complex, as it would require to divide the notes into multiple "clips", which is not supported ATM (and chances are tiny that it will be added in the future since it requires a full rework of how the MIDI files are handled).
-
@Christoph-Hart said in Midi Player?:
it would require to divide the notes into multiple "clips"
I'm thumbing thru the MidiPlayer API and found:
getNoteRectangleList(var targetBounds) This converts the MIDI data in the current sequence to a list of rectangles for each note scaled to fill the rectangle supplied as argument.
The description says
The most simple application of this is to draw a piano-roll content into a Panel.
@Christoph-Hart Can you use a panel as a "clip" with this? I'm checking out the example code, but unsure how to properly populate "note". @Dominik-Mayer any insight on this?
for(note in list) { // `note` is a array with 4 numbers and can be passed // into all Graphic API functions pretty conveniently. g.fillRect(note); }
I'm also seeing
setRepaintOnPositionChange(var shouldRepaintPanel) If true, the panel will get a repaint() call whenever the playback position changes.
description:
By default this is off, but if you need your connected Panel to repaint during playback (eg. to display a ruler that indicates the position), set this to true and it repaint() will be called periodically during playback
would this Ruler be similar to the timeline ruler in the pic above?
-
Making a ruler and showing the contents of a clip is the smallest problem (in fact these are trivial to achieve with the API calls you listed above).
The problem which you won't be able to overcome is to combine multiple MIDI files into a timeline, and drag them around as entity.
I've modified the example from the docs to use a panel to display the position and content of the MIDI file which should get you started on the basics:
HiseSnippet 2049.3oc4Y8+aabaE+NaeE0JyEoaEC6GIBFvNuncQxeIN.EEwxx1wZI1VUxMMnEEAz2wSGStiTkGkc0Jx9ab+oj+C1dOxS5NYq5ooktgto3.K936Q995mGIcWkLjkmKUNtqew3gLG2ekW+wBcR6DJW3z4PG2Ow6TZtloHVRGLdHMOmE435t5yPBtquli4y6e5AzTpHjURxw4kRdH6E7LttjZ28eNOM8XZD6BdVEt2Y+NgRQaYpbDnOq50vYHM7szArynHaq3439QGEw0RUeMUyxcbW6.Yz39IxqEV9eIOmeYJCGzzoOrPVxGKSiPMFo5zNgmF0chcm63350szKrp0K7Ydmxi3SoW5MtuYBRoDU8GtqbWpWy+4pWi4odqVQ89nIAIi5kRGyTSBRcNrCwRo4LJU6QJESn6y99QrYBNu+oEScgBbyUo+Bob3QBJnpQUI6t5rl2pKl4caSxA09i4oLz7bmL.3FMEHLeHUScby8dxVAhKd7yeR6d85zIH3zu7nu4MsBBBdUPPqftAY7d8unyVeCPIXbPva1ausFDz5jyggu4g6sUbbqsMeu0SxhiCdU2fSD+4tm8WXsO3331shia1pSuGFdR2fjCCB16gOOHvA0ixrMWL+rOeffpGo.ZdmMJ6.JXAUbJmIy3v7lJnBh2e+CYh4QF8qfySoqVgXc1y3ncpDwWyFw+Tu9gJ9Pc4Lnu52TPsLeb1XucVmUjddjMpEORDp4RAgFEclTy7S4455jvDpPvRqSD.MwnrKYp5jqXoxPtdbcxPYNGkpNIkIFnS1r1OVi.ethpHYjufbjX.WvBBULHq3TPIfB1SvLZk+letgyrfblFMC+r.beOWTcBjxYlc0uTApxvKKTE+I5T0IaaUd+BiXlcDBd4ZZ1P+BUb.S2GFBocGKUe4HHNvTG.Zct+DabyB4mZfxEx.kSMPo0.iiqNycYgxeZiPtjFA4gShTUsFLVGLbTdheVA4RJRfx61nF9uG8HxEI7bx0.BMIArRB.FaxLH4EHHA0POSJ3Y91u6yqgRzJJhPIWBoWIDYrg67ZSSxpSZVm73Fvu1Zu5D72v1ciY2tXV36MB181yu6j4C1E4X6aywdEbrUPyehEYusJXYaiJL0deFSCZuhEyTn4QzRhNgQL.pCM.pA0f9R4ZSFARt.lE7.ldkXLoDO1+AUghevlVWTm3atnjHIKW7GzjD5ULBULl.aBjcnIoRn0XTcx0LTRAiEg5jM+CzTV1P83oQCRLWkqqwi8qnYA77iPt72bR0JrPssKfTvHWBFx0bcBYmGsCQCoXj7InbFtqtT180em5jcrgt2YLnyjWCJH4Mi.+BB3XLOLkZN9Ov5hfbRMgqKLCbEnjgJ4Pl0kVwdTxLfwfZUUh3THOsn16Evl3mhAvo.ZRgEWwGM20AMjbyohim6bsAWtRllh0xyYZr5ScWB5OEujlNhMkQ.1d1Vk0VrVkEY.UXTJ5H35yGxlN1ZoSnzvYpAVkTocUkpwblCakjlSu51VcB91W0wzXFZrTPqqI9o4nE5dH6J3nd1tUq6cHK+sZ4PmEtU1875.qoJlBGQYdsvZtlWwtFjQeK6XELXpD9OtAfqraiF1x5xp0tT.OEKTmHKTp1VlMDJBDZ+GXm9A2Tp+0qwQ4monQB.4g5Kjlcv2tOHaUYBf26wFBmrTetnaA3M1JX.yWqfrIypZEE4sKxYO4HMzFveRpn+.SR2ffX.vtUZpu83y4AWpfbHbIVG9w.Xi0lewLk1Cr8l5AZJrqo1JqusgAjVCcAPF9ZdjNweyRBmv3CRz9a9cSVb3mXos0FgKL6ylaXfQ9Q6uJverLjavZK1PXQo.jfDNFZNDShxQvCpEP.YeF4QPDP77PZpEQDQYFhtmbRDjYKxA+QdPoLyHcLikBXKLC9dnwKaLInI20rq.TnwxQft+VVkEXfo4rwgN0udcBWaBMkLgtdHtH.P6otRi6.6W0nJulu7NiOqPsdlhdowPDRUFE7cfogflWBGIe5Qu1X54Q.J2NF1sf+I4P9aR9i2L9UnDS22HE8Zy9pFAfDVxCBPpu.Suf8wbxOrSZiaG6KLrZuC9+ub.gu2GJP3p2m7WZ.xHuE3ev0I0lY2XBhLVL4vAK6i8r3NN+P48RNY+wkCd89WiIVvchbux0wIwjXfi9qla3eKPe3dyxnQo3MhpdYZ7EDJl.Boy.7if6PIsd7LWAcwugciE9A.VT08S85x0gIyWeWYN5KDY94VeKduhM7NJNFvdJU107N9UK6iSrbpxmXUk640GPPLMMMJxu0Ll703obeFSvTnSs4c7NR+sE8cjFtvuiz4.p7UrKTTAzlIelEtOKieATNjWk3WkCGvf888vnbU5skvs+m2Tu+oGCF4bkoOdrZS5RqLnIwL28+lunxGlGLZs+K7dVe3q192GbX0EScmiGzs6sdWz6Cow30tORfOCAPA0weM.qFSGkpmPc175SkB4vDofGVMn2ioU7ACXpp59bMnVZ8LuL2mseOVJiVMA92uO1ulp.+DaI8EMWbewcEu9cdV0kfEij+2.Te0++DT2dIiAmRgD0ev9rm8ArzPVwCUkiM5WAwCsiafisfohHyf+N7oXxl3X2hIaNYx+irGYzPk70g1yTg4xergBX2Bya7tt2o3XRSGyIGA47fi65jAHhuNLDc2+Iv+LeY1ZIjY6kPlcVBY1cIj4wKgL6sDx7j6TFrYTqQZYlsTDHz8H6eM.2o+AIbW04evx051q