A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z  
factor — Property, class com.noteflight.standingwave3.filters.ResamplingFilter
Resample factor
factorToDecibels(gain:Number) — Static Method , class com.noteflight.standingwave3.utils.AudioUtils
Convert a pure proportional factor to a gain in decibels.
fadeDuration — Property, class com.noteflight.standingwave3.filters.AttackFilter
Get Fade time in seconds
fadeDuration — Property, class com.noteflight.standingwave3.filters.DecayFilter
Get Fade time in seconds
fadeDuration — Property, class com.noteflight.standingwave3.filters.FadeInFilter
Get Fade time in seconds
fadeDuration — Property, class com.noteflight.standingwave3.filters.FadeOutFilter
Get Fade time in seconds
FadeEnvelopeGenerator — class, package com.noteflight.standingwave3.generators
FadeEnvelopeGenerator(descriptor:com.noteflight.standingwave3.elements:AudioDescriptor, t:Number, type:String) — Constructor, class com.noteflight.standingwave3.generators.FadeEnvelopeGenerator
A FadeInEnvelopeGenerator generates a sample table that describes the envelope shape for a fade in, and can be passed to a FadeInFilter.
FADE_IN — Static Property, class com.noteflight.standingwave3.generators.FadeEnvelopeGenerator
FadeInFilter — class, package com.noteflight.standingwave3.filters
FadeInFilter passes the signal unchanged after fading it in.
FadeInFilter(source:com.noteflight.standingwave3.elements:IAudioSource, fadeDuration:Number) — Constructor, class com.noteflight.standingwave3.filters.FadeInFilter
Create a new FadeInFilter.
FADE_OUT — Static Property, class com.noteflight.standingwave3.generators.FadeEnvelopeGenerator
FadeOutFilter — class, package com.noteflight.standingwave3.filters
FadeOutFilter passes the signal unchanged until the fade is reached, and then fades it out with the supplied envelope.
FadeOutFilter(source:com.noteflight.standingwave3.elements:IAudioSource, envelope:com.noteflight.standingwave3.elements:IDirectAccessSource, fadeStart:Number) — Constructor, class com.noteflight.standingwave3.filters.FadeOutFilter
Create a new FadeInFilter.
fadeStart — Property, class com.noteflight.standingwave3.filters.DecayFilter
Get fade start time in seconds
fadeStart — Property, class com.noteflight.standingwave3.filters.FadeOutFilter
Get fade start time in seconds
fill(offset:Number) — method, interface com.noteflight.standingwave3.elements.IDirectAccessSource
Fill is called to guarantee that the sample memory is valid up until the offset specified.
fill(offset:Number) — method, class com.noteflight.standingwave3.elements.Sample
fill(toOffset:Number) — method, class com.noteflight.standingwave3.filters.CacheFilter
Instruct this cache to fill itself up to the given frame offset from its source.
fill(toOffset:Number) — method, class com.noteflight.standingwave3.filters.DecayFilter
fill(toOffset:Number) — method, class com.noteflight.standingwave3.generators.ADSREnvelopeGenerator
fill(toOffset:Number) — method, class com.noteflight.standingwave3.generators.AbstractGenerator
This abstract class assumes you will override generateChannel() and write the sample through a channelData Vector.
fill(toOffset:Number) — method, class com.noteflight.standingwave3.generators.FadeEnvelopeGenerator
fill(toOffset:Number) — method, class com.noteflight.standingwave3.generators.SoundGenerator
Instruct the sample to fill itself up to the given frame offset
FilterCalculator — class, package com.noteflight.standingwave3.utils
FilterCalculator() — Constructor, class com.noteflight.standingwave3.utils.FilterCalculator
This class provides static functions to aid in creating filter coefficients to be passed to the sample's filter methods.
firstFrame — Property, class com.noteflight.standingwave3.sources.LoopSource
Initial start point for when the source first starts
frameCount — Property, interface com.noteflight.standingwave3.elements.IAudioSource
The number of sample frames in this source.
frameCount — Property, interface com.noteflight.standingwave3.elements.IDirectAccessSource
Tell us the size of this source.
frameCount — Property, class com.noteflight.standingwave3.elements.Sample
The number of sample frames in this source.
frameCount — Property, class com.noteflight.standingwave3.filters.AbstractFilter
The number of sample frames in this source.
frameCount — Property, class com.noteflight.standingwave3.filters.AmpFilter
frameCount — Property, class com.noteflight.standingwave3.filters.AttackFilter
frameCount — Property, class com.noteflight.standingwave3.filters.CacheFilter
The number of sample frames in this source.
frameCount — Property, class com.noteflight.standingwave3.filters.DecayFilter
The filter crops the source after the fade end, and so can shorten the entire source duration.
frameCount — Property, class com.noteflight.standingwave3.filters.EnvelopeFilter
Return the length of this source, which is in effect gated by the overall length of the envelope.
frameCount — Property, class com.noteflight.standingwave3.filters.FadeInFilter
frameCount — Property, class com.noteflight.standingwave3.filters.FadeOutFilter
The filter crops the source after the fade end, and so can shorten the entire source duration.
frameCount — Property, class com.noteflight.standingwave3.filters.ResamplingFilter
Get the number of sample frames in this AudioSource.
frameCount — Property, class com.noteflight.standingwave3.filters.StandardizeFilter
frameCount — Property, class com.noteflight.standingwave3.generators.AbstractGenerator
frameCount — Property, class com.noteflight.standingwave3.generators.SoundGenerator
frameCount — Property, class com.noteflight.standingwave3.performance.AudioPerformer
Return the number of sample frames in this source.
frameCount — Property, interface com.noteflight.standingwave3.performance.IPerformance
The number of sample frames in this performance.
frameCount — Property, class com.noteflight.standingwave3.performance.ListPerformance
The frame count of the entire Performance.
frameCount — Property, class com.noteflight.standingwave3.sources.AbstractSource
frameCount — Property, class com.noteflight.standingwave3.sources.LoopSource
In a LoopSource, the frame count needs to be tweaked appropriately to reflect the frequency shift.
frameCount — Property, class com.noteflight.standingwave3.sources.SoundSource
_frames — Property, class com.noteflight.standingwave3.elements.Sample
The number of 44.1k frames in the sample.
framesPerCallback — Property, class com.noteflight.standingwave3.output.AudioSampleHandler
frames supplied for each SampleDataEvent
frequency — Property, class com.noteflight.standingwave3.filters.BiquadFilter
The center frequency of the filter in Hz.
frequency — Property, class com.noteflight.standingwave3.modulation.VibratoModulation
_frequency — Property, class com.noteflight.standingwave3.sources.SineSource
frequency — Property, class com.noteflight.standingwave3.sources.SineSource
The frequency of this sine wave.
frequencyShift — Property, class com.noteflight.standingwave3.sources.LoopSource
Factor by which to shift the playback frequency up or down
frequencyToNoteNumber(frequency:Number, refFreq:Number) — Static Method , class com.noteflight.standingwave3.utils.AudioUtils
Convert a frequency to midi note number
A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z