Starting from the current release, you can create your own virtual ports in JZZ.
Please check the example at https://github.com/jazz-soft/JZZ-modules - Open virtual MIDI-Out port implemented via MIDI.js package.
More examples and docs are coming soon...
Virtual ports in JZZ
Re: Virtual ports in JZZ
This is awesome. Nice job Sema!
Re: Virtual ports in JZZ
http://letoribo.github.io/percussion-soundfonts/
these soundfonts created by converting from
*** GeneralUser GS v1.44 *** http://www.schristiancollins.com/generaluser.php
can be found in this repo:
https://github.com/letoribo/percussion-soundfonts
these soundfonts created by converting from
*** GeneralUser GS v1.44 *** http://www.schristiancollins.com/generaluser.php
can be found in this repo:
https://github.com/letoribo/percussion-soundfonts
Re: Virtual ports in JZZ
how to play drum or multi track look like http://jazz-soft.net/demo/PlayMidiFile.html (Play Midi File Example),
I try changed from jazz-plug to jazz-modules, i make JZZ.synth.MIDIjs.js and use MIDI file to have piano and drum track and then play only piano track,
if use jazz-plugin my midi file can play piano and drum,
who have any idea can help
jzz.js(0.3.6)
I try changed from jazz-plug to jazz-modules, i make JZZ.synth.MIDIjs.js and use MIDI file to have piano and drum track and then play only piano track,
if use jazz-plugin my midi file can play piano and drum,
who have any idea can help
jzz.js(0.3.6)
Re: Virtual ports in JZZ
I use JZZ.Midi.js, JZZ.MidiFile.js for read midi file from ReadFile Example and i play after read midi ,
var port = JZZ().openMidiOut(0).or(function(){
alert('Cannot open MIDI port!');
});
function onPlay(e) {
if (e.midi instanceof JZZ_.Midi) {
port.send(e.midi.array());
}
}
like this,
piano track can play but drum can't
var port = JZZ().openMidiOut(0).or(function(){
alert('Cannot open MIDI port!');
});
function onPlay(e) {
if (e.midi instanceof JZZ_.Midi) {
port.send(e.midi.array());
}
}
like this,
piano track can play but drum can't
Re: Virtual ports in JZZ
It's difficult to tell without seeing the whole code. Is you code anywhere online?