chrislo / webaudiofont

Web Audio Font - Soundfont for Web Audio API

Home Page:http://molgav.nn.ru/WebAudioFontExampleAll.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

WebAudioFont v1.43

WebAudioFont is a set of resources and associated technology that uses sample-based synthesis to play musical instruments in browser.

Parts of WebAudioFont

Underlaying technology

WebAudioFont uses Web Audio API to play instruments.

Synthesizer uses wavetables to play sound.

Use cases

How to use

Minimal HTML page

<html>
	<head>
		<script src='WebAudioFontPlayer.js'></script>
		<script src='webaudiofont/32.0.Accoustic_32Bsaccousticbs_461_460_45127.js'></script>
		<script>
			var AudioContextFunc = window.AudioContext || window.webkitAudioContext;
			var audioContext = new AudioContextFunc();
			var player=new WebAudioFontPlayer();
		</script>
	</head>
	<body>
		<p><a href='javascript:player.queueWaveTable(audioContext, audioContext.destination, _tone_Accoustic_32Bsaccousticbs_461_460_45127, 0, 12*4+7, 2);'>click!</a></p>
	</body>
</html>

This code plays instrument _tone_Accoustic_32Bsaccousticbs_461_460_45127 from 32.0.Accoustic_32Bsaccousticbs_461_460_45127.js with pitch 55. See simple example.

How to use catalog of sounds:

  • open index page
  • find instrument
  • copy name of file to include instrument data
  • copy name of variable to refer to instrument
  • add this info to a page

Sound file format

Each file looks like this:

console.log('load _tone_Harp000087_461_460_45127');
var _tone_Harp000087_461_460_45127={
	zones:[
		{
			midi:46
			,originalPitch:5700
			,keyRangeLow:0
			,keyRangeHigh:62
			,loopStart:3340
			,loopEnd:3841
			,coarseTune:0
			,fineTune:0
			,sampleRate:22050
			,ahdsr:true
			,sample:[0,-16,-17,97,124,-9, ...
		}
		,{
			midi:46
			,originalPitch:7001
			,keyRangeLow:63
			,keyRangeHigh:76
			,file:'4f67675300020

It creates object and assigns it to a global variable.

Each instrument consists of one or more zones, each zone has own properties for wavetable. Files contains of array with audio data. You can use instruments locally without CORS problem.

  • 'sample' is an array of 16bit values with PCM data
  • 'file' is a string with HEX numbers of any supported audio file

You need to add <body onload='player.adjustPreset(audioContext,selectedPreset);'> for compressed sounds to avoid delay of sample data parsing.

Some wavetables uses loops and AHDSR volume.

Player

WebAudioFontPlayer has function queueWaveTable (audioContext, target, preset, when, pitch, duration, volume, slides)

Parameters:

  • audioContext - AudioContext
  • target - a node to connect, for example audioContext.destination
  • preset - variable with instrument preset
  • when - when to play, audioContext.currentTime or 0 to play now, audioContext.currentTime + 3 to play after 3 seconds
  • pitch - note pitch from 0 to 127, for example 2+12*4 to play D of fourth octave (use MIDI key for drums)
  • duration - note duration in seconds, for example 4 to play 4 seconds
  • volume - 0.0-1.0 volume
  • slides - array of pitch bends

Function queueWaveTable returns envelope object. You can use this object to cancel sound or access to AudioBufferSourceNode.

All examples

About

Web Audio Font - Soundfont for Web Audio API

http://molgav.nn.ru/WebAudioFontExampleAll.html

License:MIT License


Languages

Language:HTML 96.4%Language:JavaScript 3.6%