built by distriqt //
AudioRecorder is an AIR Native Extension to record audio from the user's microphone to a file.
The simple API allows you to quickly integrate audio recording in your AIR application in just a few lines of code.
Latest documentation can be found in the documentation site
Quick Example:
var file:File = File.applicationStorageDirectory.resolvePath( "recording.m4a" );
var options:AudioRecorderOptions = new AudioRecorderOptions();
options.filename = file.nativePath;
options.audioEncoding = AudioEncoder.AAC;
AudioRecorder.service.start( options );
More information here:
You can purchase a license for using this extension:
distriqt retains all copyright.