Search completed in 1.15 seconds.
6 results for "CreateDelay":
BaseAudioContext.createDelay() - Web APIs
WebAPIBaseAudioContextcreateDelay
the createdelay() method of the baseaudiocontext interface is used to create a delaynode, which is used to delay the incoming audio signal by a certain amount of time.
... syntax var delaynode = audioctx.createdelay(maxdelaytime); parameters maxdelaytime optional the maximum amount of time, in seconds, that the audio signal can be delayed by.
... var audiocontext = window.audiocontext || window.webkitaudiocontext; var audioctx = new audiocontext(); var synthdelay = audioctx.createdelay(5.0); ...
... var delay1; rangesynth.oninput = function() { delay1 = rangesynth.value; synthdelay.delaytime.setvalueattime(delay1, audioctx.currenttime); } specifications specification status comment web audio apithe definition of 'createdelay()' in that specification.
DelayNode.delayTime - Web APIs
WebAPIDelayNodedelayTime
delaytime is expressed in seconds, its minimal value is 0, and its maximum value is defined by the maxdelaytime argument of the audiocontext.createdelay() method that created it.
... syntax var audioctx = new audiocontext(); var mydelay = audioctx.createdelay(5.0); mydelay.delaytime.value = 3.0; note: though the audioparam returned is read-only, the value it represents is not.
... var audiocontext = window.audiocontext || window.webkitaudiocontext; var audioctx = new audiocontext(); var synthdelay = audioctx.createdelay(5.0); ...
DelayNode - Web APIs
WebAPIDelayNode
alternatively, you can use the baseaudiocontext.createdelay() factory method.
... var audiocontext = window.audiocontext || window.webkitaudiocontext; var audioctx = new audiocontext(); var synthdelay = audioctx.createdelay(5.0); ...
Migrating from webkitAudioContext - Web APIs
WebAPIWeb Audio APIMigrating from webkitAudioContext
createdelaynode() has been renamed to createdelay.
... if your code uses either of these names, like in the example below : // old method names var gain = context.creategainnode(); var delay = context.createdelaynode(); var js = context.createjavascriptnode(1024); you can simply rename the methods to look like this: // new method names var gain = context.creategain(); var delay = context.createdelay(); var js = context.createscriptprocessor(1024); the semantics of these methods remain the same in the renamed versions.
BaseAudioContext - Web APIs
WebAPIBaseAudioContext
baseaudiocontext.createdelay() creates a delaynode, which is used to delay the incoming audio signal by a certain amount.
Index - Web APIs
WebAPIIndex
236 baseaudiocontext.createdelay() api, audiocontext, baseaudiocontext, method, reference, web audio api, createdelay the createdelay() method of the baseaudiocontext interface is used to create a delaynode, which is used to delay the incoming audio signal by a certain amount of time.