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 |
SAMPLE_RATE — Constant Static Property, class com.anttikupila.media.SoundFX |
| |
soundCompleteHandler(event:flash.events:Event) — method, class com.anttikupila.media.SoundFX |
| |
SoundFX — class, package com.anttikupila.media |
|
Provides an easy way to transform audio output in real time with a syntax familiar from display object filters
var sound : SoundFX = new SoundFX( new URLRequest( "music.mp3" ) );
sound.filters = [ new CutoffFilter( 12000 ) ];
sound.play( );
SoundFX also provides greated control over buffering and precise seeking
var sound : SoundFX = new SoundFX( null, null, 3 ); // 3 seconds need to be loaded before playback starts
sound.load( new URLRequest( "music.mp3" ) );
sound.play( );
// a bit later.. |
SoundFX(stream:flash.net:URLRequest, context:flash.media:SoundLoaderContext, networkBufferSeconds:Number, outputBufferLength:int) — Constructor, class com.anttikupila.media.SoundFX |
| |
StreamingEvent — class, package com.anttikupila.events |
| |
StreamingEvent(type:String, bubbles:Boolean, cancelable:Boolean) — Constructor, class com.anttikupila.events.StreamingEvent |
| |
|
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 |