# audio-recorder-full

> Plugin to record audio, return a string in base64.

Latest version **1.0.0** (published 2017-08-15) · MIT license · 0 weekly downloads

## Install

```sh
npm install audio-recorder-full
pnpm add audio-recorder-full
yarn add audio-recorder-full
bun add audio-recorder-full
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.0.0 |
| Published | 2017-08-15 |
| First published | 2017-08-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Danyel Cabello |
| Maintainers | danyelk |
| Keywords | ecosystem:cordova, cordova-android, cordova-ios |

## Links

- npm: https://www.npmjs.com/package/audio-recorder-full
- Repository: https://github.com/DKbyo/CordovaPluginAudioRecoder
- Homepage: https://github.com/DKbyo/CordovaPluginAudioRecoder#readme
- Issues: https://github.com/DKbyo/CordovaPluginAudioRecoder/issues
- npm.io page: https://npm.io/package/audio-recorder-full

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 1.0.0 (latest) — 2017-08-15

## README

#Cordova Native Audio Plugin

Cordova extension for Native Audio record for iOS and Android.

## Integration

###startRecord
```
function(time, success, error) {
    exec(success, error, "AudioRecorder", "startRecord", [time]);
};
```
time -> Time in seconds that the recording is made

success -> CallBack function success
'error   -> CallBack function error

###stopRecord
```
function(success, error) {
    exec(success, error, "AudioRecorder", "stopRecord", []);
};
```

success -> CallBack function success
'error   -> CallBack function error

###Based on 

https://github.com/emj365/cordova-plugin-audio-recorder-api

---
_Source: https://npm.io/package/audio-recorder-full · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
