KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
ANE-AudioRecorder
★ 9
Open GitHub ↗
Audio Recorder Native Extension
Download README (.md)
Explore Similar Repositories
MIAPPE-ontology
:
Modelling of MIAPPE
NSFW_Detection
:
To check if the input video contains Nudity or any other NSFW content and label them.
XCGuideMaskView
:
自定义的新手引导视图,使用方便
esanpy
:
Python Text Analyzer based on Elasticsearch
cordova-plugin-apkInstaller
:
Cordova Apk Installer Plugin.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
ANE-AudioRecorder
?
Download (.md)
 # AudioRecorder 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](https://docs.airnativeextensions.com/docs/audiorecorder) Quick Example: ```actionscript 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: [com.distriqt.AudioRecorder](https://airnativeextensions.com/extension/com.distriqt.AudioRecorder) ## License You can purchase a license for using this extension: [airnativeextensions.com](https://airnativeextensions.com/) 