npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dymo-core

v0.13.3

Published

package that manages and plays back dynamic music objects and their renderings

Downloads

16

Readme

dymo-core

A core package that manages and plays back dynamic music objects (dymos) and their renderings.

Embedding dymo-core in a web app

You can add dymo-core to any web app using either NPM

$ npm install dymo-core

or Bower

$ bower install dymo-core

Then, simply include [bower_components]/dymo-core/dist/dymo-core.min.js in your code.

The DymoManager class allows you to easily load and playback dymos. First you need to create a Web Audio API audio context and pass it to the constructor:

var dymoManager = new DymoManager(audioContext);

Then, you can load and play a dymo and it's rendering as follows (indicating either relative local paths or uris):

dymoManager.loadDymoAndRendering('example-dymo.json', 'example-rendering.json', function() {
	dymoManager.startPlaying();
});

The callback tells you when the dymo, its audio files, and the rendering are done loading, so that you can start playing it back. You can stop the dymo analogously using

dymoManager.stopPlaying();

If you plan on using custom UI controls in your application, the dymo manager can provide you with the corresponding UI controls you added to your dymo spec (see next section). The following method takes the name you gave it in the json definition as a parameter.

dymoManager.getUIControl(name);

You can also use the Semantic Player framework to create generic user interfaces more easily.

Creating dymos manually in json-ld

In this section you'll learn how to define dymos manually using json-ld. This can be quite tedious once dymos get more complex or once they include analytical features and semantic annotations. In that case you might prefer to use the Dymo Designer or the Dymo Generator. Finally, instead of using json-ld, you can also define them directly in RDF which won't be described here. You can refer to this paper for some examples.

A simple dymo to start with

The most basic dymo that can be played back is just a single object with an associated audio file. You can define one as follows:

{
	"@context":"http://tiny.cc/dymo-context",
	"@id":"exampleDymo",
	"@type":"Dymo",
	"source":"example.m4a"
}

In the first line you refer to the json-ld context, which is necessary for the dymo to become linked data and which allows you to use all the keywords necessary to define dymos. Then you define an id which can be chosen freely but has to be unique within the structure. The third line tells the system that it is indeed a dymo that you're defining here. Finally, you specify a relative local path or a uri that points to the dymo's audio file.

You can then play back this dymo using the Semantic Player or by embedding dymo-core in a web app (instructions above).

Defining a rendering

In order to make the dymo dynamic, adaptive, or interactive you can define a rendering as follows:

{
	"@context":"http://tiny.cc/dymo-context",
	"@id":"exampleRendering",
	"@type":"Rendering",
	"mappings":[
		{
			"domainDims":[{"name":"randomControl","type":"Random"}],
			"function":{"args":["a"],"body":"return a;"},
			"dymos":["exampleDymo"],
			"range":"Amplitude"
		}
	]
}

The first few lines are analogous to the ones we used to define the dymo in the previous section. What follows is a list of mappings which contains only one in this example. First we specify a number of domain dimensions to map from, here a one-dimensional space with just a random control. Then, we define a mapping function that can consist of arbitrary javascript code, the arguments of which are going to stem from the domain dimensions. Here, we simple map the value a coming from the random control with an identity function. dymos and parameter define where the result of the function is mapped to, in this case the Amplitude parameter of the exampleDymo defined in the previous section.

Within dymo-core you can use any of the auto controls defined by the ontology, as well as custom UI controls, which you can manipulate yourself within your app. You can define a custom UI control as follows

{"name":"customControl","type":"Custom"}

You can also use the predefined types Slider, Toggle, or Button if you want them to behave respectively. Any of these UI controls can then be obtained from the DymoManager as explained above.

For now, sensor controls and automatically generated UI controls can only be used within the Semantic Player framework.

Creating a dymo hierarchy

{
	"@context":"http://tiny.cc/dymo-context",
	"@id":"exampleRendering",
	"@type":"Rendering",
	"mappings":[
		{
			"domainDims":[{"name":"randomControl","type":"Random"}],
			"function":{"args":["a"],"body":"return a;"},
			"dymos":["exampleDymo"],
			"range":"Amplitude"
		}
	]
}

Defining higher-level parameters

Setting parameter and feature values