react-native-audio-api 0.10.0-nightly-98d2e0d-20251106 β 0.10.1
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 +13 -11
- package/package.json +8 -2
package/README.md
CHANGED
|
@@ -19,19 +19,8 @@ check out the [Getting Started](https://docs.swmansion.com/react-native-audio-ap
|
|
|
19
19
|
|
|
20
20
|
### Planned
|
|
21
21
|
|
|
22
|
-
### <img src="https://img.shields.io/badge/Coming_in-0.9.0-orange" />
|
|
23
|
-
|
|
24
|
-
- **JS Audio Worklets V1 π**<br />
|
|
25
|
-
Receive events and data callbacks from audio thread to synchronize with UI on UI thread.
|
|
26
|
-
|
|
27
22
|
### <img src="https://img.shields.io/badge/Coming_in-x.x.x-orange" />
|
|
28
23
|
|
|
29
|
-
- **Convolver Node π**<br />
|
|
30
|
-
Realistic reverb and spatial effects in the browser by applying impulse responses. It makes audio sound like itβs being played in real spaces, from small rooms to cathedrals, or through hardware like amps and speakers
|
|
31
|
-
|
|
32
|
-
- **Decoding and utility modules π§**<br />
|
|
33
|
-
Decode and modify audio data without the need to create AudioContext first through a set of utility classes
|
|
34
|
-
|
|
35
24
|
- **DynamicCompressorNode γ½οΈ**<br />
|
|
36
25
|
Reduce the volume of loud sounds and boost quieter nodes to balance the audio signal, avoid clipping or distorted sounds
|
|
37
26
|
|
|
@@ -47,9 +36,22 @@ check out the [Getting Started](https://docs.swmansion.com/react-native-audio-ap
|
|
|
47
36
|
- **Noise Cancellation π¦**<br />
|
|
48
37
|
System-based active noise and echo cancellation support
|
|
49
38
|
|
|
39
|
+
### <a href="https://github.com/software-mansion/react-native-audio-api/releases/tag/0.10.0"><img src="https://img.shields.io/badge/Released_in-0.10.0-green" /></a>
|
|
40
|
+
|
|
41
|
+
- **Decoding and utility modules π§**<br />
|
|
42
|
+
Decode and modify audio data without the need to create AudioContext first through a set of utility classes
|
|
43
|
+
|
|
44
|
+
- **Convolver Node π**<br />
|
|
45
|
+
Realistic reverb and spatial effects in the browser by applying impulse responses. It makes audio sound like itβs being played in real spaces, from small rooms to cathedrals, or through hardware like amps and speakers
|
|
46
|
+
|
|
50
47
|
- **JS Audio Worklets V2 π**<br />
|
|
51
48
|
Customize the process pipeline with JS functions running on audio thread.
|
|
52
49
|
|
|
50
|
+
### <a href="https://github.com/software-mansion/react-native-audio-api/releases/tag/0.9.0"><img src="https://img.shields.io/badge/Released_in-0.9.0-green" /></a>
|
|
51
|
+
|
|
52
|
+
- **JS Audio Worklets V1 π**<br />
|
|
53
|
+
Receive events and data callbacks from audio thread to synchronize with UI on UI thread.
|
|
54
|
+
|
|
53
55
|
### <a href="https://github.com/software-mansion/react-native-audio-api/releases/tag/0.8.0"><img src="https://img.shields.io/badge/Released_in-0.8.0-green" /></a>
|
|
54
56
|
|
|
55
57
|
- **Decoding support for m4a/mp4/aac/ogg/opus π** <br />
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-audio-api",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.1",
|
|
4
4
|
"description": "react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification",
|
|
5
5
|
"bin": {
|
|
6
6
|
"setup-rn-audio-api-web": "./scripts/setup-rn-audio-api-web.js"
|
|
@@ -84,7 +84,12 @@
|
|
|
84
84
|
"peerDependencies": {
|
|
85
85
|
"react": "*",
|
|
86
86
|
"react-native": "*",
|
|
87
|
-
"react-native-worklets": "
|
|
87
|
+
"react-native-worklets": ">= 0.6.0"
|
|
88
|
+
},
|
|
89
|
+
"peerDependenciesMeta": {
|
|
90
|
+
"react-native-worklets": {
|
|
91
|
+
"optional": true
|
|
92
|
+
}
|
|
88
93
|
},
|
|
89
94
|
"devDependencies": {
|
|
90
95
|
"@babel/cli": "^7.20.0",
|
|
@@ -107,6 +112,7 @@
|
|
|
107
112
|
"@types/node": "^18.0.0",
|
|
108
113
|
"@types/react": "^19.1.1",
|
|
109
114
|
"@types/react-test-renderer": "^19.1.0",
|
|
115
|
+
"@types/semver": "7.7.1",
|
|
110
116
|
"babel-plugin-module-resolver": "^4.1.0",
|
|
111
117
|
"commitlint": "^17.0.2",
|
|
112
118
|
"del-cli": "^5.1.0",
|