
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
jzz-gui-player
Advanced tools
Supports MIDI 1.0 SMF and MIDI 2.0 Clips
See the demo...
npm install jzz-gui-player --save
or yarn add jzz-gui-player
or get the full development version and minified scripts from GitHub
https://github.com/jazz-soft/polymer-midi-player
https://github.com/jazz-soft/react-midi-player
<script src="JZZ.js"></script>
<script src="JZZ.midi.SMF.js"></script>
<script src="JZZ.gui.Player.js"></script>
//...
<script src="https://cdn.jsdelivr.net/npm/jzz"></script>
<script src="https://cdn.jsdelivr.net/npm/jzz-midi-smf"></script>
<script src="https://cdn.jsdelivr.net/npm/jzz-gui-player"></script>
//...
<script src="https://unpkg.com/jzz"></script>
<script src="https://unpkg.com/jzz-midi-smf"></script>
<script src="https://unpkg.com/jzz-gui-player"></script>
//...
var JZZ = require('jzz');
require('jzz-midi-smf')(JZZ);
require('jzz-gui-player')(JZZ);
//...
import { JZZ } from 'jzz';
import { SMF } from 'jzz-midi-smf';
import { Player } from 'jzz-gui-player';
SMF(JZZ);
Player(JZZ);
//...
require(['JZZ', 'JZZ.midi.SMF', 'JZZ.gui.Player'], function(JZZ, smf, player) {
// ...
});
Please check the API Reference !
<div id=player></div>
<script>
var player = new JZZ.gui.Player('player');
var data = ... // load MIDI file as a string or a buffer
player.load(new JZZ.MIDI.SMF(data)); // MIDI 1.0, or
// player.load(new JZZ.MIDI.Clip(data)); // MIDI 2.0
player.play();
</script>
Please visit https://jazz-soft.net for more information.
FAQs
MIDI Player GUI for browsers
The npm package jzz-gui-player receives a total of 68 weekly downloads. As such, jzz-gui-player popularity was classified as not popular.
We found that jzz-gui-player demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.