---
description: The Capacitor Audio Recorder plugin allows you to record audio in your Capacitor app with cross-platform support for Android, iOS, and web.
title: Announcing the Audio Recorder Plugin for Capacitor - Capawesome
image: https://capawesome.io/docs/assets/images/social/blog/announcing-the-capacitor-audio-recorder-plugin.png
---

[ Skip to content](#announcing-the-capacitor-audio-recorder-plugin) 

[ 🎉 Introducing **Capawesome Platform** — one platform for Live Updates, Native Builds, App Store Publishing, and Insider SDKs.](https://capawesome.io) 

* [  Formbricks ](/docs/plugins/formbricks/)
* [  Geocoder ](/docs/plugins/geocoder/)
* [  Google Sign-In ](/docs/plugins/google-sign-in/)
* [  libSQL ](/docs/plugins/libsql/)
* [  Live Update ](/docs/plugins/live-update/)
* [  Managed Configurations ](/docs/plugins/managed-configurations/)
* [  Media Session ](/docs/plugins/media-session/)
* [  ML Kit ](/docs/plugins/mlkit/)
* [  NFC ](/docs/plugins/nfc/)
* [  OAuth ](/docs/plugins/oauth/)
* [  Pedometer ](/docs/plugins/pedometer/)
* [  Photo Editor ](/docs/plugins/photo-editor/)
* [  PostHog ](/docs/plugins/posthog/)
* [  Printer ](/docs/plugins/printer/)
* [  Purchases ](/docs/plugins/purchases/)
* [  RealtimeKit ](/docs/plugins/realtimekit/)
* [  Screen Orientation ](/docs/plugins/screen-orientation/)
* [  Screenshot ](/docs/plugins/screenshot/)
* [  Secure Preferences ](/docs/plugins/secure-preferences/)
* [  Speech Recognition ](/docs/plugins/speech-recognition/)
* [  Speech Synthesis ](/docs/plugins/speech-synthesis/)
* [  Share Target ](/docs/plugins/share-target/)
* [  Square Mobile Payments ](/docs/plugins/square-mobile-payments/)
* [  SQLite ](/docs/plugins/sqlite/)
* [  Superwall ](/docs/plugins/superwall/)
* [  Torch ](/docs/plugins/torch/)
* [  Wifi ](/docs/plugins/wifi/)
* [  Zip ](/docs/plugins/zip/)
* [  Cloud ](/docs/cloud/)
* [  Live Updates ](/docs/cloud/live-updates/)
* Advanced
* Integrations
* [  Native Builds ](/docs/cloud/native-builds/)
* [  Configuration ](/docs/cloud/native-builds/configuration/)
* [  Environments ](/docs/cloud/native-builds/environments/)
* Guides
* [  Sample Projects ](/docs/cloud/native-builds/sample-projects/)
* [  Troubleshooting ](/docs/cloud/native-builds/troubleshooting/)
* [  Automations ](/docs/cloud/automations/)
* [  Assist ](/docs/cloud/assist/)
* Account
* Organizations
* [  Organization and User Management ](/docs/cloud/organizations/memberships/)
* [  Single Sign-On (SSO) ](/docs/cloud/organizations/sso/)
* [  Teams ](/docs/cloud/organizations/teams/)
* [  Two-Factor Authentication ](/docs/cloud/organizations/two-factor-authentication/)
* [  Integrations ](/docs/cloud/integrations/)
* [  License Keys ](/docs/cloud/license-keys/)
* [  Webhooks ](/docs/cloud/webhooks/)
* [  Pricing ](https://capawesome.io/pricing/)
* [  FAQ ](/docs/cloud/faq/)
* [  Support ](/docs/cloud/support/)
* [  Contributing ](/docs/contributing/)
* [  LLMs ](/docs/llms/)
* [  Insiders ](/docs/insiders/)
* [  License ](https://capawesome.io/legal/eula/)
* [  Support ](/docs/insiders/support/)
* [  FAQ ](/docs/insiders/faq/)
* [  Blog ](/blog/)
* Categories

* [  Conclusion ](#conclusion)

* Related links

# Announcing the Capacitor Audio Recorder Plugin[¶](#announcing-the-capacitor-audio-recorder-plugin "Permanent link")

Today we are excited to announce our brand new [Capacitor Audio Recorder](/docs/plugins/audio-recorder/) plugin. This plugin enables recording audio in your Capacitor app and provides cross-platform support for Android, iOS and web. It's available to all Capawesome [Insiders](/docs/insiders/).

Let's take a quick look at the [API](/docs/plugins/audio-recorder/#api) and how you can use the plugin to record audio.

## Installation[¶](#installation "Permanent link")

To install the Capacitor Audio Recorder plugin, please refer to the [Installation](/docs/plugins/audio-recorder/#installation) section in the plugin documentation.

## Usage[¶](#usage "Permanent link")

The plugin is very easy to use. Let's take a look at the basic usage of the plugin.

### Start recording[¶](#start-recording "Permanent link")

You can immediately start recording audio with the [startRecording()](/docs/plugins/audio-recorder/#startrecording) method:

`[](#%5F%5Fcodelineno-0-1)import { AudioRecorder } from "@capawesome-team/capacitor-audio-recorder";
[](#%5F%5Fcodelineno-0-2)
[](#%5F%5Fcodelineno-0-3)const startRecording = async () => {
[](#%5F%5Fcodelineno-0-4)  await AudioRecorder.startRecording();
[](#%5F%5Fcodelineno-0-5)};
`

There are no additional parameters required.

### Pause recording[¶](#pause-recording "Permanent link")

You can pause the recording at any time with the [pauseRecording()](/docs/plugins/audio-recorder/#pauserecording) method:

`[](#%5F%5Fcodelineno-1-1)import { AudioRecorder } from "@capawesome-team/capacitor-audio-recorder";
[](#%5F%5Fcodelineno-1-2)
[](#%5F%5Fcodelineno-1-3)const pauseRecording = async () => {
[](#%5F%5Fcodelineno-1-4)  await AudioRecorder.pauseRecording();
[](#%5F%5Fcodelineno-1-5)};
`

### Resume recording[¶](#resume-recording "Permanent link")

After pausing the recording, you can resume it with the [resumeRecording()](/docs/plugins/audio-recorder/#resumerecording) method:

`[](#%5F%5Fcodelineno-2-1)import { AudioRecorder } from "@capawesome-team/capacitor-audio-recorder";
[](#%5F%5Fcodelineno-2-2)
[](#%5F%5Fcodelineno-2-3)const resumeRecording = async () => {
[](#%5F%5Fcodelineno-2-4)  await AudioRecorder.resumeRecording();
[](#%5F%5Fcodelineno-2-5)};
`

### Stop recording[¶](#stop-recording "Permanent link")

Finally, you can stop the recording with the [stopRecording()](/docs/plugins/audio-recorder/#stoprecording) method:

`[](#%5F%5Fcodelineno-3-1)import { AudioRecorder } from '@capawesome-team/capacitor-audio-recorder';
[](#%5F%5Fcodelineno-3-2)import { NativeAudio } from '@capacitor-community/native-audio';
[](#%5F%5Fcodelineno-3-3)
[](#%5F%5Fcodelineno-3-4)const stopRecording = async () => {
[](#%5F%5Fcodelineno-3-5)  // Stop recording and get the audio blob or URI
[](#%5F%5Fcodelineno-3-6)  const { blob, uri } = await AudioRecorder.stopRecording();
[](#%5F%5Fcodelineno-3-7)  // Play the audio
[](#%5F%5Fcodelineno-3-8)  if (blob) {
[](#%5F%5Fcodelineno-3-9)    // Only available on Web
[](#%5F%5Fcodelineno-3-10)    const audio = new Audio();
[](#%5F%5Fcodelineno-3-11)    audio.src = URL.createObjectURL(blob);
[](#%5F%5Fcodelineno-3-12)    audio.play();
[](#%5F%5Fcodelineno-3-13)  } else if (uri) {
[](#%5F%5Fcodelineno-3-14)    // Only available on Android and iOS
[](#%5F%5Fcodelineno-3-15)    await NativeAudio.preload({
[](#%5F%5Fcodelineno-3-16)      assetId: 'recording',
[](#%5F%5Fcodelineno-3-17)      assetPath: uri,
[](#%5F%5Fcodelineno-3-18)      isUrl: true,
[](#%5F%5Fcodelineno-3-19)    });
[](#%5F%5Fcodelineno-3-20)    await NativeAudio.play({ assetId: 'recording' });
[](#%5F%5Fcodelineno-3-21)  }
[](#%5F%5Fcodelineno-3-22)};
`

This method returns a `blob` or `uri` depending on the platform. The `blob` is only available on web, while the `uri` is only available on Android and iOS. You can then upload the audio file to your server or play it back in your app.

### Get recording status[¶](#get-recording-status "Permanent link")

Additionally, you can check the recording status at any time with the [getRecordingStatus()](/docs/plugins/audio-recorder/#getrecordingstatus) method:

`[](#%5F%5Fcodelineno-4-1)import { AudioRecorder } from "@capawesome-team/capacitor-audio-recorder";
[](#%5F%5Fcodelineno-4-2)
[](#%5F%5Fcodelineno-4-3)const getRecordingStatus = async () => {
[](#%5F%5Fcodelineno-4-4)  const { status } = await AudioRecorder.getRecordingStatus();
[](#%5F%5Fcodelineno-4-5)  console.log("Recording status:", status);
[](#%5F%5Fcodelineno-4-6)};
`

This method returns the current recording status, which can be either `INACTIVE`, `RECORDING` or `PAUSED`.

## Conclusion[¶](#conclusion "Permanent link")

We hope you are as excited as we are about the new [Capacitor Audio Recorder](/docs/plugins/audio-recorder/) plugin. Be sure to check out the [API Reference](/docs/plugins/audio-recorder/#api) to see what else you can do with this plugin. If you are missing any features, just [create a feature request](https://github.com/capawesome-team/capacitor-plugins/issues/new/choose) in the [GitHub repository](https://github.com/capawesome-team/capacitor-plugins). Make sure you follow us on [X](https://x.com/capawesomeio) so you don't miss any future updates.

March 18, 2026 

 Back to top 