cesardanielhg / bg-sound

Web Component to emulate the old-school <bgsound> HTML element

Home Page:https://bitmidi.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

bg-sound

travis npm downloads javascript style guide

Web Component to emulate the old-school <bgsound> HTML element

Play MIDI files in a browser with a simple Web Component, emulating <bgsound>, the Background Sound element.

Install

npm install bg-sound timidity freepats

Usage

<bg-sound src="sound.mid"></bg-sound>
<script src="bg-sound.min.js"></script>

Talk

I introduced this project in a talk at JSConf Colombia 2018.

The Lost Art of MIDI talk

  • Slides
  • Talk video (coming soon!)

FAQ

Why is the tag called <bg-sound> (with a dash)?

The name of a custom HTML element must contain a dash (-). This is what the spec says, presumably because otherwise browsers could not introduce new HTML tags without web compatibility risk.

Why is the script tag required?

The script tag is needed to define the behavior of the <bg-sound> HTML element. Without it, the browser would just treat the tag like a <div>.

Why are the timidity and freepats packages required?

The <bg-sound> custom element lazily loads a WebAssembly file and instrument sounds at runtime.

The timidity package provides the WebAssembly file (libtimidity.wasm). The freepats package provides the instrument sound files.

It's important to ensure that the timidity and freepats folders in node_modules are being served to the public. For example, here is how to mount the necessary files at / with the express server:

const timidityPath = path.dirname(require.resolve('timidity'))
app.use(express.static(timidityPath))

const freepatsPath = path.dirname(require.resolve('freepats'))
app.use(express.static(freepatsPath))

Optionally, provide a baseUrl attribute to customize where the player will look for the lazy-loaded WebAssembly file libtimidity.wasm and the FreePats General MIDI soundset files. The default baseUrl is /.

<bg-sound src="sound.mid" baseUrl="/custom-path"></bg-sound>

Demo

If you like this, then check out BitMidi.com, the wayback machine for old-school MIDI files! Check out some examples MIDIs here:

License

MIT. Copyright (c) Feross Aboukhadijeh.

About

Web Component to emulate the old-school <bgsound> HTML element

https://bitmidi.com

License:MIT License


Languages

Language:JavaScript 96.1%Language:HTML 3.9%