@capgo/capacitor-audio-recorder 7.1.4 → 7.1.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -9,7 +9,17 @@
|
|
|
9
9
|
|
|
10
10
|
Capture audio clips across iOS, Android, and the Web with a consistent Capacitor API.
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
## Why Capacitor Audio Recorder?
|
|
13
|
+
|
|
14
|
+
The only **free** and **up-to-date** audio recording plugin for Capacitor:
|
|
15
|
+
|
|
16
|
+
- **Same JavaScript API** - Compatible interface with paid plugins
|
|
17
|
+
- **Full feature set** - Pause/resume, configurable bitrates, sample rates
|
|
18
|
+
- **Cross-platform** - iOS, Android, and Web support
|
|
19
|
+
- **Modern implementation** - Uses latest platform APIs
|
|
20
|
+
- **Event listeners** - Real-time recording status and error handling
|
|
21
|
+
|
|
22
|
+
Perfect for voice memo apps, audio messaging, podcast recording, and any app needing audio capture.
|
|
13
23
|
|
|
14
24
|
## Documentation
|
|
15
25
|
|
|
@@ -4,7 +4,7 @@ import Foundation
|
|
|
4
4
|
|
|
5
5
|
@objc(CapacitorAudioRecorderPlugin)
|
|
6
6
|
public class CapacitorAudioRecorderPlugin: CAPPlugin, CAPBridgedPlugin, AVAudioRecorderDelegate {
|
|
7
|
-
private let pluginVersion: String = "7.1.
|
|
7
|
+
private let pluginVersion: String = "7.1.7"
|
|
8
8
|
public let identifier = "CapacitorAudioRecorderPlugin"
|
|
9
9
|
public let jsName = "CapacitorAudioRecorder"
|
|
10
10
|
public let pluginMethods: [CAPPluginMethod] = [
|