Audio Recorder
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.
Features
- Record from the device microphone to a native format
- Start, progress and end events
- Single API interface - your code works across supported platforms with no modifications
- Sample project code and ASDocs reference
Documentation
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:
License
You can purchase a license for using this extension:
distriqt retains all copyright.