@siteed/audio-studio 3.0.0 → 3.0.2-beta.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/CHANGELOG.md +356 -415
- package/README.md +1 -1
- package/android/src/main/CMakeLists.txt +3 -0
- package/build/cjs/AudioAnalysis/audioFeaturesWasm.js +7 -155
- package/build/cjs/AudioAnalysis/audioFeaturesWasm.js.map +1 -1
- package/build/cjs/AudioAnalysis/audioFeaturesWasm.web.js +165 -0
- package/build/cjs/AudioAnalysis/audioFeaturesWasm.web.js.map +1 -0
- package/build/cjs/AudioAnalysis/melSpectrogramWasm.js +8 -140
- package/build/cjs/AudioAnalysis/melSpectrogramWasm.js.map +1 -1
- package/build/cjs/AudioAnalysis/melSpectrogramWasm.web.js +153 -0
- package/build/cjs/AudioAnalysis/melSpectrogramWasm.web.js.map +1 -0
- package/build/cjs/AudioAnalysis/wasmConfig.js +26 -0
- package/build/cjs/AudioAnalysis/wasmConfig.js.map +1 -0
- package/build/cjs/index.js +3 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/prebuilt/wasm/mel-spectrogram.js +18 -0
- package/build/esm/AudioAnalysis/audioFeaturesWasm.js +7 -122
- package/build/esm/AudioAnalysis/audioFeaturesWasm.js.map +1 -1
- package/build/esm/AudioAnalysis/audioFeaturesWasm.web.js +127 -0
- package/build/esm/AudioAnalysis/audioFeaturesWasm.web.js.map +1 -0
- package/build/esm/AudioAnalysis/melSpectrogramWasm.js +8 -107
- package/build/esm/AudioAnalysis/melSpectrogramWasm.js.map +1 -1
- package/build/esm/AudioAnalysis/melSpectrogramWasm.web.js +115 -0
- package/build/esm/AudioAnalysis/melSpectrogramWasm.web.js.map +1 -0
- package/build/esm/AudioAnalysis/wasmConfig.js +21 -0
- package/build/esm/AudioAnalysis/wasmConfig.js.map +1 -0
- package/build/esm/index.js +1 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/prebuilt/wasm/mel-spectrogram.js +18 -0
- package/build/types/AudioAnalysis/audioFeaturesWasm.d.ts +3 -15
- package/build/types/AudioAnalysis/audioFeaturesWasm.d.ts.map +1 -1
- package/build/types/AudioAnalysis/audioFeaturesWasm.web.d.ts +24 -0
- package/build/types/AudioAnalysis/audioFeaturesWasm.web.d.ts.map +1 -0
- package/build/types/AudioAnalysis/melSpectrogramWasm.d.ts +3 -15
- package/build/types/AudioAnalysis/melSpectrogramWasm.d.ts.map +1 -1
- package/build/types/AudioAnalysis/melSpectrogramWasm.web.d.ts +16 -0
- package/build/types/AudioAnalysis/melSpectrogramWasm.web.d.ts.map +1 -0
- package/build/types/AudioAnalysis/wasmConfig.d.ts +4 -0
- package/build/types/AudioAnalysis/wasmConfig.d.ts.map +1 -0
- package/build/types/index.d.ts +1 -0
- package/build/types/index.d.ts.map +1 -1
- package/package.json +3 -2
- package/src/AudioAnalysis/audioFeaturesWasm.ts +18 -179
- package/src/AudioAnalysis/audioFeaturesWasm.web.ts +201 -0
- package/src/AudioAnalysis/melSpectrogramWasm.ts +23 -169
- package/src/AudioAnalysis/melSpectrogramWasm.web.ts +184 -0
- package/src/AudioAnalysis/wasmConfig.ts +24 -0
- package/src/index.ts +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,8 +7,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [3.0.1] - 2026-03-21
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
- Add `@expo/config-plugins` to `peerDependencies` — fixes Yarn PnP `ambiguous require` error during `expo prebuild` (#341)
|
|
14
|
+
- WASM path resolution in build output — `prebuilt/` is now copied into `build/cjs/` and `build/esm/` so Metro resolves WASM imports correctly after install (#341)
|
|
15
|
+
- Split WASM modules into separate web/native platform files to prevent Metro bundling issues (#338)
|
|
10
16
|
|
|
11
17
|
## [3.0.0] - 2026-03-20
|
|
18
|
+
|
|
12
19
|
### BREAKING CHANGES
|
|
13
20
|
- Package renamed from `@siteed/expo-audio-studio` to `@siteed/audio-studio`. The old package continues as a backwards-compatible shim.
|
|
14
21
|
- Native module renamed from `ExpoAudioStream` to `AudioStudio`
|
|
@@ -25,511 +32,445 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
25
32
|
- iOS: `setupNowPlayingInfo` no longer overrides user-configured audio session options
|
|
26
33
|
- iOS: `selectInputDevice` syncs `deviceId` into `recordingSettings` before engine update
|
|
27
34
|
- iOS: phone-call auto-resume respects user-configured `categoryOptions`
|
|
28
|
-
- iOS: `AudioDeviceManager.
|
|
35
|
+
- iOS: `AudioDeviceManager.prepareAudioSession` preserves existing session options
|
|
29
36
|
|
|
30
37
|
### Performance
|
|
31
38
|
- Optimized mel spectrogram C++ implementation
|
|
32
|
-
### BREAKING CHANGES
|
|
33
|
-
- Package renamed from `@siteed/expo-audio-studio` to `@siteed/audio-studio`. The old package continues as a backwards-compatible shim.
|
|
34
|
-
- Native module renamed from `ExpoAudioStream` to `AudioStudio`
|
|
35
39
|
|
|
36
|
-
|
|
37
|
-
- C++ mel spectrogram streaming with WASM build (#324)
|
|
38
|
-
- `streamFormat: 'float32'` option — native delivers `Float32Array` to `onAudioStream`, eliminating base64 encode/decode overhead (#315)
|
|
40
|
+
## [2.18.5] - 2026-02-23
|
|
39
41
|
|
|
40
42
|
### Fixed
|
|
41
|
-
-
|
|
42
|
-
-
|
|
43
|
-
-
|
|
44
|
-
-
|
|
45
|
-
-
|
|
46
|
-
- iOS: `selectInputDevice` syncs `deviceId` into `recordingSettings` before engine update
|
|
47
|
-
- iOS: phone-call auto-resume respects user-configured `categoryOptions`
|
|
48
|
-
- iOS: `AudioDeviceManager.prepareAudioSession` preserves existing session options
|
|
43
|
+
- Android: guard Bluetooth API calls behind permission check on API 31+ (#294)
|
|
44
|
+
- Android: migrate phone state listener to `TelephonyCallback` on API 31+ (#275)
|
|
45
|
+
- Android: reset `startTime` in `startRecording` and validate hardware format (#298, #223)
|
|
46
|
+
- Android: gate foreground service on `enableBackgroundAudio` (#288, #294)
|
|
47
|
+
- Android: sanitize options before native bridge calls to prevent crash
|
|
49
48
|
|
|
50
|
-
### Performance
|
|
51
|
-
- Optimized mel spectrogram C++ implementation
|
|
52
|
-
## [2.18.5] - 2026-02-23
|
|
53
|
-
### Changed
|
|
54
|
-
- fix(expo-audio-studio): guard Bluetooth API calls behind permission check on API 31+ (#294) ([05d6e5a](https://github.com/deeeed/expo-audio-stream/commit/05d6e5adb0b8aff35d88aea264d8b75ebb1ae1e4))
|
|
55
|
-
- fix(expo-audio-studio): migrate phone state listener to TelephonyCallback on API 31+ (#275) ([cace0e7](https://github.com/deeeed/expo-audio-stream/commit/cace0e77854c9f5d98abcd320c3759cd765c22da))
|
|
56
|
-
- fix(expo-audio-studio): reset startTime in startRecording and validate hardware format (#298, #223) ([9eee59f](https://github.com/deeeed/expo-audio-stream/commit/9eee59fdb0bb0c3435c728a37880541914a181d0))
|
|
57
|
-
- fix(expo-audio-studio): gate foreground service on enableBackgroundAudio (#288, #294) ([ea6ff85](https://github.com/deeeed/expo-audio-stream/commit/ea6ff855cf6e333cdddd8be0d9581cb7481d7d6f))
|
|
58
|
-
- fix(expo-audio-studio): sanitize options before native bridge calls to prevent Android crash ([5af91d6](https://github.com/deeeed/expo-audio-stream/commit/5af91d6bae0bee92013dc21023e38765cbbd94f3))
|
|
59
|
-
- feat(playground): CDP agentic bridge for multi-platform automation ([48d7dda](https://github.com/deeeed/expo-audio-stream/commit/48d7dda2b017c9b9029c716ea1c0b4dc18a135c9))
|
|
60
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.18.4 ([d93ceae](https://github.com/deeeed/expo-audio-stream/commit/d93ceae943c98322d34d38f5e76f2da91bd739a2))
|
|
61
49
|
## [2.18.4] - 2026-02-16
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
-
|
|
68
|
-
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
## [2.18.2] - 2026-02-16
|
|
72
|
-
### Changed
|
|
73
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.18.1 ([067ebfe](https://github.com/deeeed/expo-audio-stream/commit/067ebfe3b6ad3c506e64c3988b67ea90dc894c18))
|
|
50
|
+
|
|
51
|
+
### Added
|
|
52
|
+
- Expo SDK 54 (React Native 0.81, React 19) support (#305)
|
|
53
|
+
|
|
54
|
+
### Fixed
|
|
55
|
+
- iOS: include compression data in `onAudioStream` events
|
|
56
|
+
- Android: properly emit final chunk of audio data on stop (#293)
|
|
57
|
+
|
|
74
58
|
## [2.18.1] - 2025-08-02
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
-
|
|
59
|
+
|
|
60
|
+
### Added
|
|
61
|
+
- Improved memory monitoring
|
|
62
|
+
|
|
78
63
|
## [2.18.0] - 2025-08-01
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
64
|
+
|
|
65
|
+
### Fixed
|
|
66
|
+
- Android: optimize buffer size to prevent OOM errors
|
|
67
|
+
- Android: invalid paused duration calculation
|
|
68
|
+
|
|
83
69
|
## [2.17.0] - 2025-07-31
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
-
|
|
87
|
-
|
|
88
|
-
### Changed
|
|
89
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.16.1 ([c9614d4](https://github.com/deeeed/expo-audio-stream/commit/c9614d4ebf87d73c3c5b2f7d6e60492fd5e45e64))
|
|
70
|
+
|
|
71
|
+
### Fixed
|
|
72
|
+
- Android: fix `OutOfMemoryError` by tracking stream position correctly
|
|
73
|
+
|
|
90
74
|
## [2.16.1] - 2025-07-27
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
-
|
|
75
|
+
|
|
76
|
+
### Fixed
|
|
77
|
+
- Android: audio analysis accumulation showing 0 bytes
|
|
78
|
+
|
|
94
79
|
## [2.16.0] - 2025-07-27
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
-
|
|
80
|
+
|
|
81
|
+
### Performance
|
|
82
|
+
- Android: optimize stop recording performance for long recordings
|
|
83
|
+
|
|
98
84
|
## [2.15.0] - 2025-07-15
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
-
|
|
102
|
-
|
|
103
|
-
### Changed
|
|
104
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.14.8 ([4598073](https://github.com/deeeed/expo-audio-stream/commit/4598073062e05139bfa7d9ed80896c90359f0e18))
|
|
105
|
-
## [2.14.8] - 2025-07-15
|
|
106
|
-
### Changed
|
|
107
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.14.7 ([93c5a53](https://github.com/deeeed/expo-audio-stream/commit/93c5a53822b9115f0b3647e833320b5c7a6bd03f))
|
|
108
|
-
## [2.14.7] - 2025-07-15
|
|
109
|
-
### Changed
|
|
110
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.14.6 ([829a70e](https://github.com/deeeed/expo-audio-stream/commit/829a70e0ff8e077aa77197387f3a0b285e846fcd))
|
|
111
|
-
## [2.14.6] - 2025-07-15
|
|
112
|
-
### Changed
|
|
113
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.14.5 ([ee7e3ce](https://github.com/deeeed/expo-audio-stream/commit/ee7e3ce39696c8a806574a858473dd664d5ac435))
|
|
114
|
-
## [2.14.5] - 2025-07-15
|
|
115
|
-
### Changed
|
|
116
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.14.4 ([44848d7](https://github.com/deeeed/expo-audio-stream/commit/44848d7a0f62dcc2dd2fa6165dbe0ce965f95254))
|
|
85
|
+
|
|
86
|
+
### Added
|
|
87
|
+
- Android: `showPauseResumeActions` option to notification config (#282)
|
|
88
|
+
|
|
117
89
|
## [2.14.4] - 2025-07-15
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
-
|
|
90
|
+
|
|
91
|
+
### Fixed
|
|
92
|
+
- Plugin: respect `enableDeviceDetection` configuration for Android permissions
|
|
93
|
+
- Android: add missing `BLUETOOTH_ADMIN` permission for device detection
|
|
94
|
+
|
|
121
95
|
## [2.14.3] - 2025-06-12
|
|
96
|
+
|
|
122
97
|
### Changed
|
|
123
|
-
-
|
|
98
|
+
- Remove analysis bit depth logging for cleaner debug output
|
|
99
|
+
|
|
124
100
|
## [2.14.2] - 2025-06-11
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
-
|
|
128
|
-
|
|
101
|
+
|
|
102
|
+
### Added
|
|
103
|
+
- Platform limitations validation and documentation
|
|
104
|
+
|
|
105
|
+
### Fixed
|
|
106
|
+
- iOS: update compressed file size when primary output is disabled
|
|
107
|
+
|
|
129
108
|
## [2.14.1] - 2025-06-11
|
|
130
|
-
|
|
131
|
-
|
|
109
|
+
|
|
110
|
+
### Fixed
|
|
111
|
+
- Android: fix duration returning 0 when primary output is disabled (#244)
|
|
112
|
+
|
|
132
113
|
## [2.14.0] - 2025-06-11
|
|
133
|
-
|
|
134
|
-
|
|
114
|
+
|
|
115
|
+
### Performance
|
|
116
|
+
- Comprehensive cross-platform stop recording performance optimization
|
|
117
|
+
|
|
135
118
|
## [2.13.2] - 2025-06-10
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
-
|
|
119
|
+
|
|
120
|
+
### Fixed
|
|
121
|
+
- Invalid type exports
|
|
122
|
+
|
|
139
123
|
## [2.13.1] - 2025-06-09
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
-
|
|
143
|
-
|
|
124
|
+
|
|
125
|
+
### Added
|
|
126
|
+
- Sub-100ms audio events analysis and improvements (#270)
|
|
127
|
+
|
|
128
|
+
### Fixed
|
|
129
|
+
- Update `expo-modules-core` peer dependency for Expo SDK 53 compatibility
|
|
130
|
+
|
|
144
131
|
## [2.13.0] - 2025-06-09
|
|
145
|
-
|
|
146
|
-
|
|
132
|
+
|
|
133
|
+
### Added
|
|
134
|
+
- Enhanced device detection and management — configurable `enableDeviceDetection`, automatic connect/disconnect events, force refresh (#269)
|
|
135
|
+
|
|
147
136
|
## [2.12.3] - 2025-06-07
|
|
137
|
+
|
|
148
138
|
### Changed
|
|
149
|
-
-
|
|
150
|
-
|
|
139
|
+
- Adjust audio focus request timing in `AudioRecorderManager`
|
|
140
|
+
|
|
151
141
|
## [2.12.2] - 2025-06-07
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
- feat(playground): implement agent validation framework and enhance testing capabilities (#266) ([e7937e0](https://github.com/deeeed/expo-audio-stream/commit/e7937e0268f54f85ea2e0171b221f7ef29cc6248))
|
|
142
|
+
|
|
143
|
+
### Fixed
|
|
144
|
+
- Android: audio focus strategy for background recording (#267)
|
|
145
|
+
|
|
157
146
|
## [2.12.0] - 2025-06-07
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
-
|
|
161
|
-
|
|
147
|
+
|
|
148
|
+
### Added
|
|
149
|
+
- Android-only `audioFocusStrategy` option (#264)
|
|
150
|
+
|
|
151
|
+
### Fixed
|
|
152
|
+
- Android: PCM streaming duration calculation bug (#263, #265)
|
|
153
|
+
|
|
162
154
|
## [2.11.0] - 2025-06-05
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
-
|
|
155
|
+
|
|
156
|
+
### Added
|
|
157
|
+
- M4A support with `preferRawStream` option (#261)
|
|
158
|
+
|
|
159
|
+
### Fixed
|
|
160
|
+
- Enforce 10ms minimum interval on both platforms (#262)
|
|
161
|
+
- Android: proper `MediaCodec` resource cleanup in `AudioProcessor`
|
|
162
|
+
|
|
169
163
|
## [2.10.6] - 2025-06-04
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
-
|
|
164
|
+
|
|
165
|
+
### Fixed
|
|
166
|
+
- iOS: prevent `durationMs` returning 0 (#244, #260)
|
|
167
|
+
|
|
173
168
|
## [2.10.5] - 2025-06-04
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
-
|
|
169
|
+
|
|
170
|
+
### Fixed
|
|
171
|
+
- iOS: enable audio streaming when primary output is disabled (#259)
|
|
172
|
+
|
|
177
173
|
## [2.10.4] - 2025-06-03
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
-
|
|
174
|
+
|
|
175
|
+
### Fixed
|
|
176
|
+
- iOS: resolve Swift compilation scope error in `AudioStreamManager` (#256)
|
|
177
|
+
|
|
181
178
|
## [2.10.3] - 2025-06-02
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
-
|
|
179
|
+
|
|
180
|
+
### Fixed
|
|
181
|
+
- Prevent `UninitializedPropertyAccessException` crash in developer menu (#250)
|
|
182
|
+
- Return compression info when primary output is disabled (#244, #249)
|
|
183
|
+
|
|
185
184
|
## [2.10.2] - 2025-05-31
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
-
|
|
185
|
+
|
|
186
|
+
### Fixed
|
|
187
|
+
- Buffer size calculation and duplicate emission fix (#248)
|
|
188
|
+
|
|
189
189
|
## [2.10.1] - 2025-05-27
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
-
|
|
190
|
+
|
|
191
|
+
### Fixed
|
|
192
|
+
- `useAudioRecorder`: update `intervalId` type for better type safety
|
|
193
|
+
|
|
193
194
|
## [2.10.0] - 2025-05-26
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
-
|
|
197
|
-
-
|
|
198
|
-
|
|
195
|
+
|
|
196
|
+
### Added
|
|
197
|
+
- Buffer duration control and `skipFileWriting` options
|
|
198
|
+
- Enhanced testing framework with instrumented tests (#242)
|
|
199
|
+
|
|
199
200
|
## [2.9.0] - 2025-05-15
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
-
|
|
203
|
-
|
|
204
|
-
- feat: clean up redundant code and improve stability (#238) ([1b01256](https://github.com/deeeed/expo-audio-stream/commit/1b01256c2b89a1089e1df21f3faf2908816ca54b))
|
|
205
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.6 ([50a0fce](https://github.com/deeeed/expo-audio-stream/commit/50a0fce86524b9364329e111701bd056638d2849))
|
|
206
|
-
## [2.8.6] - 2025-05-11
|
|
207
|
-
### Changed
|
|
208
|
-
- chore(expo-audio-studio): update Android module configuration and prevent plugin conflicts ([7f696fb](https://github.com/deeeed/expo-audio-stream/commit/7f696fb4277f1747d1ba753397d2d6a97ea19abc))
|
|
209
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.5 ([bece9b6](https://github.com/deeeed/expo-audio-stream/commit/bece9b6b43cb1a780d9786e376efdd93ef82446f))
|
|
210
|
-
## [2.8.5] - 2025-05-11
|
|
211
|
-
### Changed
|
|
212
|
-
- chore(expo-audio-studio): remove exports field from package.json ([9dd5029](https://github.com/deeeed/expo-audio-stream/commit/9dd5029d81fcc3a4d5b95ee5956beb8481f3950a))
|
|
213
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.4 ([e86a373](https://github.com/deeeed/expo-audio-stream/commit/e86a373939ed3a371095cbfe09d664f2b4b16b9d))
|
|
201
|
+
|
|
202
|
+
### Added
|
|
203
|
+
- Web audio chunk handling improvements (#240)
|
|
204
|
+
|
|
214
205
|
## [2.8.4] - 2025-05-11
|
|
215
|
-
|
|
216
|
-
|
|
206
|
+
|
|
207
|
+
### Fixed
|
|
208
|
+
- Expo plugin setup
|
|
209
|
+
|
|
217
210
|
## [2.8.3] - 2025-05-06
|
|
211
|
+
|
|
218
212
|
### Changed
|
|
219
|
-
-
|
|
220
|
-
|
|
213
|
+
- Update plugin configuration to use ESM format
|
|
214
|
+
|
|
221
215
|
## [2.8.2] - 2025-05-06
|
|
216
|
+
|
|
222
217
|
### Changed
|
|
223
|
-
-
|
|
224
|
-
|
|
218
|
+
- TypeScript configurations for dual module (ESM/CJS) support
|
|
219
|
+
|
|
225
220
|
## [2.8.1] - 2025-05-06
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
-
|
|
229
|
-
|
|
230
|
-
### Changed
|
|
231
|
-
- feat(playground): Version 1.0.1 with Audio Enhancements, App Updates, and Navigation Refactor (#229) ([868fca0](https://github.com/deeeed/expo-audio-stream/commit/868fca026119aea116a22670c2b6fe364b6df06c))
|
|
232
|
-
- chore: enhance publish script to include git push after documentation updates ([1b0b0db](https://github.com/deeeed/expo-audio-stream/commit/1b0b0db6cf40a6397e6d7438cb7543c93e67b143))
|
|
233
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.7.0 ([fe19a2f](https://github.com/deeeed/expo-audio-stream/commit/fe19a2fa1af6033cfa025691f25a0e9bcd64b37c))
|
|
221
|
+
|
|
222
|
+
### Added
|
|
223
|
+
- Dual module format (ESM/CommonJS) to resolve module resolution issues (#235)
|
|
224
|
+
|
|
234
225
|
## [2.7.0] - 2025-05-04
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
-
|
|
238
|
-
|
|
239
|
-
### Changed
|
|
240
|
-
- chore: update readme with store download information (#224) ([c404d86](https://github.com/deeeed/expo-audio-stream/commit/c404d860cdb1c4c4bbc3767214f56bf547acec33))
|
|
226
|
+
|
|
227
|
+
### Fixed
|
|
228
|
+
- iOS: enhance background audio recording and audio format conversion (#228)
|
|
229
|
+
|
|
241
230
|
## [2.6.2] - 2025-05-01
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
-
|
|
231
|
+
|
|
232
|
+
### Fixed
|
|
233
|
+
- Android: ensure foreground-only audio recording works with `FOREGROUND_SERVICE` (#202, #221)
|
|
234
|
+
|
|
245
235
|
## [2.6.1] - 2025-05-01
|
|
246
|
-
|
|
247
|
-
|
|
236
|
+
|
|
237
|
+
### Fixed
|
|
238
|
+
- iOS: resolve hardware format mismatch crash and enhance logging (#220)
|
|
239
|
+
|
|
248
240
|
## [2.6.0] - 2025-05-01
|
|
249
|
-
|
|
250
|
-
|
|
241
|
+
|
|
242
|
+
### Fixed
|
|
243
|
+
- Web: resolve audio recording issue without compression (#217, #219)
|
|
244
|
+
|
|
251
245
|
## [2.5.0] - 2025-04-30
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
-
|
|
255
|
-
-
|
|
256
|
-
-
|
|
257
|
-
|
|
258
|
-
|
|
246
|
+
|
|
247
|
+
### Added
|
|
248
|
+
- Complete Android implementation for audio device API (#214)
|
|
249
|
+
- Cross-platform audio device detection, selection, and fallback handling (#213)
|
|
250
|
+
- Zero-latency recording with `prepareRecording` API (#211)
|
|
251
|
+
|
|
252
|
+
### Fixed
|
|
253
|
+
- iOS: ensure complete audio data emission on recording stop/pause (#215)
|
|
254
|
+
|
|
259
255
|
## [2.4.1] - 2025-04-08
|
|
260
|
-
|
|
261
|
-
|
|
256
|
+
|
|
257
|
+
### Added
|
|
258
|
+
- Enhanced background audio handling and permission checks (#200)
|
|
259
|
+
|
|
262
260
|
## [2.4.0] - 2025-04-03
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
-
|
|
261
|
+
|
|
262
|
+
### Fixed
|
|
263
|
+
- iOS: resolve sample rate mismatch and enhance recording stability (#198)
|
|
264
|
+
- Android: enhance permission handling for phone state and notifications (#196)
|
|
265
|
+
|
|
266
266
|
## [2.3.1] - 2025-04-03
|
|
267
|
+
|
|
267
268
|
### Changed
|
|
268
|
-
-
|
|
269
|
+
- Remove external CRC32 library dependency (#195)
|
|
270
|
+
|
|
269
271
|
## [2.3.0] - 2025-03-29
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
-
|
|
273
|
-
|
|
272
|
+
|
|
273
|
+
### Fixed
|
|
274
|
+
- Always generate a new UUID unless filename is provided (#182)
|
|
275
|
+
|
|
274
276
|
## [2.2.0] - 2025-03-28
|
|
277
|
+
|
|
275
278
|
### Changed
|
|
276
|
-
-
|
|
277
|
-
|
|
278
|
-
- fix: linting issues ([741589d](https://github.com/deeeed/expo-audio-stream/commit/741589d60485a2d049e7adf529d3fd2b999fa098))
|
|
279
|
-
- chore(expo-audio-studio): release @siteed/expo-audio-studio@2.1.1 ([1b17ac6](https://github.com/deeeed/expo-audio-stream/commit/1b17ac6e103f2ca50f29668b3ddaaf57a4b4b7d3))
|
|
280
|
-
## [2.1.1] - 2025-03-04
|
|
281
|
-
### Changed
|
|
282
|
-
- feat: Rename`@siteed/expo-audio-stream` to `@siteed/expo-audio-studio` (#160) ([1b99191](https://github.com/deeeed/expo-audio-stream/commit/1b9919143413a900aefed94c20fc9a8b0e6050d3))
|
|
279
|
+
- Platform-specific CRC32 handling
|
|
280
|
+
|
|
283
281
|
## [2.1.0] - 2025-03-04
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
-
|
|
287
|
-
-
|
|
288
|
-
-
|
|
289
|
-
-
|
|
290
|
-
-
|
|
291
|
-
|
|
292
|
-
- chore(expo-audio-stream): release @siteed/expo-audio-stream@2.0.1 ([c77cfc8](https://github.com/deeeed/expo-audio-stream/commit/c77cfc8b70f87a12bb19fa03b245cda7ed2496e1))
|
|
282
|
+
|
|
283
|
+
### Added
|
|
284
|
+
- Mel spectrogram extraction and language detection (#157)
|
|
285
|
+
- Audio import functionality and decibel visualization (#156)
|
|
286
|
+
- iOS trim support with custom filename (#152)
|
|
287
|
+
- Sample rate control and web trimming support (#151)
|
|
288
|
+
- Audio trimming with optimized processing and detailed feedback (#150, #149)
|
|
289
|
+
|
|
293
290
|
## [2.0.1] - 2025-02-27
|
|
291
|
+
|
|
294
292
|
### Changed
|
|
295
|
-
-
|
|
296
|
-
|
|
293
|
+
- Update background mode handling for audio stream plugin
|
|
294
|
+
|
|
297
295
|
## [2.0.0] - 2025-02-27
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
-
|
|
301
|
-
-
|
|
302
|
-
-
|
|
303
|
-
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
-
|
|
307
|
-
|
|
308
|
-
- feat: pcm player (#137) ([8db6f16](https://github.com/deeeed/expo-audio-stream/commit/8db6f16f13cbcf78fd4a8e412bb00689e47d5a72))
|
|
309
|
-
- feat(audio-stream): add extractAudioData API ([faf8915](https://github.com/deeeed/expo-audio-stream/commit/faf8915df3b18ea54ca7e562f61749d7cadf8bb4))
|
|
310
|
-
- feat(audio): improve audio trimming and waveform visualization (#136) ([ad5514b](https://github.com/deeeed/expo-audio-stream/commit/ad5514b412eedc7211cb200cc3747e8a83afbf88))
|
|
311
|
-
- feat(audio): enhance audio player with preview, trimming and feature analysis (#135) ([3f7eb9c](https://github.com/deeeed/expo-audio-stream/commit/3f7eb9cde7b314505d8ed3e4704c7b1321da6b15))
|
|
312
|
-
- feat: add web permission for microphone (#131) ([9a2ed7f](https://github.com/deeeed/expo-audio-stream/commit/9a2ed7f31ad41560d094a22d1248034cb2f5886d))
|
|
313
|
-
- refactor(audio): simplify amplitude analysis and remove redundant configuration (#133) ([5d64aa2](https://github.com/deeeed/expo-audio-stream/commit/5d64aa22299836cc9cb925d3e91f3d9470f3e856))
|
|
314
|
-
- feat: add full audio analysis with spectral features and time range controls (#132) ([5677dc3](https://github.com/deeeed/expo-audio-stream/commit/5677dc321f5a9ff4bea37fbbce3cb6ae3aad67f6))
|
|
315
|
-
- chore(expo-audio-stream): release @siteed/expo-audio-stream@1.17.0 ([689aead](https://github.com/deeeed/expo-audio-stream/commit/689aeadedaa58050cd18e8ec1fa5ff1fcd93f0db))
|
|
296
|
+
|
|
297
|
+
### Added
|
|
298
|
+
- Full audio analysis with spectral features and time range controls (#132)
|
|
299
|
+
- `extractAudioData` API
|
|
300
|
+
- PCM player
|
|
301
|
+
- Audio checksum verification and segment analysis (#143)
|
|
302
|
+
|
|
303
|
+
### Fixed
|
|
304
|
+
- Audio recording reliability improvements and web IndexedDB management (#146)
|
|
305
|
+
|
|
316
306
|
## [1.17.0] - 2025-02-18
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
-
|
|
320
|
-
|
|
321
|
-
- feat(ios): Make it possible to set a different interval for the audio analysis (#125) ([10a914e](https://github.com/deeeed/expo-audio-stream/commit/10a914e853deb66f9c3dec1845cab4cfcd34c6da))
|
|
307
|
+
|
|
308
|
+
### Added
|
|
309
|
+
- Interval audio analysis for web, Android, and iOS (#125, #126)
|
|
310
|
+
|
|
322
311
|
## [1.16.0] - 2025-02-17
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
-
|
|
326
|
-
-
|
|
312
|
+
|
|
313
|
+
### Fixed
|
|
314
|
+
- iOS: prevent adding background modes when disabled
|
|
315
|
+
- iOS: replace CallKit with `AVAudioSession` for phone call detection
|
|
316
|
+
|
|
327
317
|
## [1.15.1] - 2025-02-17
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
-
|
|
331
|
-
-
|
|
318
|
+
|
|
319
|
+
### Fixed
|
|
320
|
+
- iOS: restore Opus compression support (#122)
|
|
321
|
+
- Emit audio analysis without blocking the recording thread
|
|
322
|
+
|
|
332
323
|
## [1.15.0] - 2025-02-15
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
-
|
|
324
|
+
|
|
325
|
+
### Fixed
|
|
326
|
+
- iOS: improve audio recording interruption handling and auto-resume (#119)
|
|
327
|
+
- Android: improve background recording and call interruption handling (#118)
|
|
328
|
+
|
|
336
329
|
## [1.14.2] - 2025-02-13
|
|
337
|
-
|
|
330
|
+
|
|
331
|
+
### Fixed
|
|
332
|
+
- Clear recording metadata on STOP action
|
|
333
|
+
|
|
338
334
|
## [1.14.1] - 2025-02-12
|
|
339
|
-
|
|
335
|
+
|
|
336
|
+
### Fixed
|
|
337
|
+
- Enable background recording by default (#114)
|
|
338
|
+
|
|
340
339
|
## [1.14.0] - 2025-02-12
|
|
341
|
-
|
|
340
|
+
|
|
341
|
+
### Fixed
|
|
342
|
+
- `keepAwake` issue on iOS and auto-resume after call (#113)
|
|
343
|
+
|
|
342
344
|
## [1.13.2] - 2025-02-10
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
-
|
|
345
|
+
|
|
346
|
+
### Fixed
|
|
347
|
+
- Ensure foreground service starts within required timeframe
|
|
348
|
+
|
|
346
349
|
## [1.13.0] - 2025-02-09
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
350
|
+
|
|
351
|
+
### Added
|
|
352
|
+
- Audio decode support (#104)
|
|
353
|
+
|
|
354
|
+
### Fixed
|
|
355
|
+
- Background recording issues and status checking (#103)
|
|
356
|
+
|
|
351
357
|
## [1.12.1] - 2025-02-01
|
|
352
|
-
|
|
358
|
+
|
|
359
|
+
### Fixed
|
|
360
|
+
- Improve audio recording interruption handling and consistency (#98)
|
|
361
|
+
|
|
353
362
|
## [1.12.0] - 2025-01-31
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
-
|
|
363
|
+
|
|
364
|
+
### Added
|
|
365
|
+
- Call state checks before starting or resuming recording (#94)
|
|
366
|
+
- Custom filename and directory support for recordings (#92)
|
|
367
|
+
- Compressed recording info with file size (#90)
|
|
368
|
+
|
|
357
369
|
## [1.11.3] - 2025-01-25
|
|
358
|
-
|
|
359
|
-
|
|
370
|
+
|
|
371
|
+
### Fixed
|
|
372
|
+
- Disable duplicate notification alerts (#82)
|
|
373
|
+
|
|
360
374
|
## [1.11.2] - 2025-01-22
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
-
|
|
375
|
+
|
|
376
|
+
### Fixed
|
|
377
|
+
- Resources not cleaned up properly on app kill (#80)
|
|
378
|
+
|
|
364
379
|
## [1.11.0] - 2025-01-22
|
|
365
|
-
|
|
380
|
+
|
|
381
|
+
### Added
|
|
382
|
+
- Intelligent call interruption handling and compression improvements (#78)
|
|
383
|
+
|
|
366
384
|
## [1.10.0] - 2025-01-14
|
|
367
|
-
|
|
368
|
-
|
|
385
|
+
|
|
386
|
+
### Added
|
|
387
|
+
- Support for pausing and resuming compressed recordings
|
|
388
|
+
- Optimized notification channel settings
|
|
389
|
+
|
|
369
390
|
## [1.9.2] - 2025-01-12
|
|
370
|
-
|
|
391
|
+
|
|
392
|
+
### Fixed
|
|
393
|
+
- iOS: bitrate verification to prevent invalid values
|
|
394
|
+
|
|
371
395
|
## [1.9.1] - 2025-01-12
|
|
372
|
-
|
|
396
|
+
|
|
397
|
+
### Fixed
|
|
398
|
+
- iOS: potentially missing compressed file info
|
|
399
|
+
|
|
373
400
|
## [1.9.0] - 2025-01-11
|
|
374
|
-
|
|
401
|
+
|
|
402
|
+
### Performance
|
|
403
|
+
- Optimize memory usage and streaming performance for web audio recording (#75)
|
|
404
|
+
|
|
375
405
|
## [1.8.0] - 2025-01-10
|
|
376
|
-
|
|
406
|
+
|
|
407
|
+
### Added
|
|
408
|
+
- Audio compression support
|
|
409
|
+
|
|
377
410
|
## [1.7.2] - 2025-01-07
|
|
378
|
-
|
|
411
|
+
|
|
412
|
+
### Fixed
|
|
413
|
+
- Web: correct WAV header handling in audio recording
|
|
414
|
+
|
|
379
415
|
## [1.7.1] - 2025-01-07
|
|
380
|
-
|
|
416
|
+
|
|
417
|
+
### Fixed
|
|
418
|
+
- Notification: avoid triggering new alerts on update (#71)
|
|
419
|
+
|
|
381
420
|
## [1.7.0] - 2025-01-05
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
-
|
|
385
|
-
-
|
|
386
|
-
-
|
|
387
|
-
- total size
|
|
388
|
-
|
|
389
|
-
- chore(expo-audio-stream): remove git commit step from publish script ([4a772ce](https://github.com/deeeed/expo-audio-stream/commit/4a772ce93bb7405d9b8e981f46bdf8941a71ecfe))
|
|
390
|
-
- chore: more publishing automation ([3693021](https://github.com/deeeed/expo-audio-stream/commit/369302107f9dca9dddd8ae68e6214481a39976ac))
|
|
391
|
-
- expo plugin files not published ([b88c446](https://github.com/deeeed/expo-audio-stream/commit/b88c44667013a901fccfe6f89dcb640ae2aae47f))
|
|
392
|
-
- chore(expo-audio-stream): improved build publish script ([ad65a69](https://github.com/deeeed/expo-audio-stream/commit/ad65a69011273e0eab1ac0f464fc3b009fc3433d))
|
|
393
|
-
- fix(expo-audio-stream): missing package files ([0901a1b](https://github.com/deeeed/expo-audio-stream/commit/0901a1bbbcce3111c9b5d61ade8caa48bcdd3613))
|
|
394
|
-
- feat(expo-audio-stream): opt in debug log for plugin config ([03a0a71](https://github.com/deeeed/expo-audio-stream/commit/03a0a7168bb4f77638de51c55a1ad19c713b52dc))
|
|
395
|
-
- fix(expo-audio-stream): include all build + sourcemaps files in the package
|
|
396
|
-
- fix(expo-audio-stream): missing plugin files ([e56254a](https://github.com/deeeed/expo-audio-stream/commit/e56254a4ffa1c015df3d300831ba0b392958b6c8))
|
|
397
|
-
- fix(expo-audio-stream): plugin deployment process and build system enhancements (#56) ([63fbeb8](https://github.com/deeeed/expo-audio-stream/commit/63fbeb82f56130dedeafa633e916f2ce0f8f1a67))
|
|
398
|
-
## [1.5.0] - 2024-12-10
|
|
399
|
-
- UNPUBLISHED because of a bug in the build system
|
|
400
|
-
## [1.4.0] - 2024-12-05
|
|
401
|
-
- chore: remove unusded dependencies ([ad81dd5](https://github.com/deeeed/expo-audio-stream/commit/ad81dd560c93dd1d04995a323a4ae72d4de20f3e))
|
|
421
|
+
|
|
422
|
+
### Fixed
|
|
423
|
+
- iOS: improve audio resampling and duration tracking (#69)
|
|
424
|
+
- Handle paused state in `stopRecording` (#68)
|
|
425
|
+
- Reset audio recording state properly on iOS and Android (#66)
|
|
426
|
+
- Android: total size not resetting on new recording (#64)
|
|
427
|
+
|
|
402
428
|
## [1.3.1] - 2024-12-05
|
|
403
|
-
|
|
404
|
-
## [1.3.0] - 2024-11-28
|
|
429
|
+
|
|
405
430
|
### Added
|
|
406
|
-
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
- feat: latest expo sdk ([258ef6c](https://github.com/deeeed/expo-audio-stream/commit/258ef6cf68e70c7855f696a01204f79b0793fdc0))
|
|
411
|
-
## [1.2.5] - 2024-11-12
|
|
431
|
+
- Web: throttling and optimized event processing (#49)
|
|
432
|
+
|
|
433
|
+
## [1.3.0] - 2024-11-28
|
|
434
|
+
|
|
412
435
|
### Added
|
|
413
|
-
-
|
|
414
|
-
|
|
436
|
+
- Standardize permission status response structure across platforms (#44)
|
|
437
|
+
|
|
415
438
|
## [1.2.4] - 2024-11-05
|
|
439
|
+
|
|
416
440
|
### Changed
|
|
417
|
-
- Android minimum audio interval set to 10ms
|
|
418
|
-
-
|
|
441
|
+
- Android: minimum audio interval set to 10ms
|
|
442
|
+
- Plugin: do not include `notification` config by default to prevent iOS version mismatch
|
|
419
443
|
|
|
420
444
|
### Fixed
|
|
421
|
-
- Remove frequently firing log statements on web
|
|
445
|
+
- Remove frequently firing log statements on web
|
|
446
|
+
|
|
422
447
|
## [1.2.0] - 2024-10-24
|
|
448
|
+
|
|
423
449
|
### Added
|
|
424
|
-
-
|
|
425
|
-
-
|
|
426
|
-
- Android:
|
|
427
|
-
-
|
|
428
|
-
|
|
450
|
+
- `keepAwake` — continue recording when app is in background (default: true)
|
|
451
|
+
- Customizable recording notifications for Android and iOS
|
|
452
|
+
- Android: rich notification with live waveform, configurable actions/colors/priorities
|
|
453
|
+
- iOS: media player integration
|
|
454
|
+
|
|
429
455
|
## [1.1.17] - 2024-10-21
|
|
456
|
+
|
|
430
457
|
### Added
|
|
431
|
-
-
|
|
432
|
-
|
|
458
|
+
- Bluetooth headset support on iOS
|
|
459
|
+
|
|
460
|
+
### Fixed
|
|
461
|
+
- Android: not reading custom interval audio update
|
|
462
|
+
|
|
433
463
|
## [1.0.0] - 2024-04-01
|
|
464
|
+
|
|
434
465
|
### Added
|
|
435
|
-
- Initial release
|
|
436
|
-
-
|
|
437
|
-
-
|
|
438
|
-
-
|
|
439
|
-
-
|
|
440
|
-
-
|
|
441
|
-
-
|
|
442
|
-
|
|
443
|
-
[unreleased]: https://github.com/deeeed/audiolab/compare/@siteed/audio-studio@3.0.
|
|
444
|
-
[3.0.
|
|
445
|
-
[
|
|
446
|
-
[2.18.4]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.18.3...@siteed/expo-audio-studio@2.18.4
|
|
447
|
-
[2.18.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.18.2...@siteed/expo-audio-studio@2.18.3
|
|
448
|
-
[2.18.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.18.1...@siteed/expo-audio-studio@2.18.2
|
|
449
|
-
[2.18.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.18.0...@siteed/expo-audio-studio@2.18.1
|
|
450
|
-
[2.18.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.17.0...@siteed/expo-audio-studio@2.18.0
|
|
451
|
-
[2.17.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.16.2...@siteed/expo-audio-studio@2.17.0
|
|
452
|
-
[2.16.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.16.1...@siteed/expo-audio-studio@2.16.2
|
|
453
|
-
[2.16.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.16.0...@siteed/expo-audio-studio@2.16.1
|
|
454
|
-
[2.16.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.15.0...@siteed/expo-audio-studio@2.16.0
|
|
455
|
-
[2.15.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.9...@siteed/expo-audio-studio@2.15.0
|
|
456
|
-
[2.14.9]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.8...@siteed/expo-audio-studio@2.14.9
|
|
457
|
-
[2.14.8]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.7...@siteed/expo-audio-studio@2.14.8
|
|
458
|
-
[2.14.7]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.6...@siteed/expo-audio-studio@2.14.7
|
|
459
|
-
[2.14.6]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.5...@siteed/expo-audio-studio@2.14.6
|
|
460
|
-
[2.14.5]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.4...@siteed/expo-audio-studio@2.14.5
|
|
461
|
-
[2.14.4]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.3...@siteed/expo-audio-studio@2.14.4
|
|
462
|
-
[2.14.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.2...@siteed/expo-audio-studio@2.14.3
|
|
463
|
-
[2.14.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.1...@siteed/expo-audio-studio@2.14.2
|
|
464
|
-
[2.14.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.0...@siteed/expo-audio-studio@2.14.1
|
|
465
|
-
[2.14.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.13.2...@siteed/expo-audio-studio@2.14.0
|
|
466
|
-
[2.13.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.13.1...@siteed/expo-audio-studio@2.13.2
|
|
467
|
-
[2.13.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.13.0...@siteed/expo-audio-studio@2.13.1
|
|
468
|
-
[2.13.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.12.3...@siteed/expo-audio-studio@2.13.0
|
|
469
|
-
[2.12.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.12.2...@siteed/expo-audio-studio@2.12.3
|
|
470
|
-
[2.12.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.12.1...@siteed/expo-audio-studio@2.12.2
|
|
471
|
-
[2.12.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.12.0...@siteed/expo-audio-studio@2.12.1
|
|
472
|
-
[2.12.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.11.0...@siteed/expo-audio-studio@2.12.0
|
|
473
|
-
[2.11.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.6...@siteed/expo-audio-studio@2.11.0
|
|
474
|
-
[2.10.6]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.5...@siteed/expo-audio-studio@2.10.6
|
|
475
|
-
[2.10.5]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.4...@siteed/expo-audio-studio@2.10.5
|
|
476
|
-
[2.10.4]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.3...@siteed/expo-audio-studio@2.10.4
|
|
477
|
-
[2.10.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.2...@siteed/expo-audio-studio@2.10.3
|
|
478
|
-
[2.10.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.1...@siteed/expo-audio-studio@2.10.2
|
|
479
|
-
[2.10.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.10.0...@siteed/expo-audio-studio@2.10.1
|
|
480
|
-
[2.10.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.9.0...@siteed/expo-audio-studio@2.10.0
|
|
481
|
-
[2.9.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.6...@siteed/expo-audio-studio@2.9.0
|
|
482
|
-
[2.8.6]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.5...@siteed/expo-audio-studio@2.8.6
|
|
483
|
-
[2.8.5]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.4...@siteed/expo-audio-studio@2.8.5
|
|
484
|
-
[2.8.4]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.3...@siteed/expo-audio-studio@2.8.4
|
|
485
|
-
[2.8.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.2...@siteed/expo-audio-studio@2.8.3
|
|
486
|
-
[2.8.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.1...@siteed/expo-audio-studio@2.8.2
|
|
487
|
-
[2.8.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.8.0...@siteed/expo-audio-studio@2.8.1
|
|
488
|
-
[2.8.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.7.0...@siteed/expo-audio-studio@2.8.0
|
|
489
|
-
[2.7.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.3...@siteed/expo-audio-studio@2.7.0
|
|
490
|
-
[2.6.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.2...@siteed/expo-audio-studio@2.6.3
|
|
491
|
-
[2.6.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.1...@siteed/expo-audio-studio@2.6.2
|
|
492
|
-
[2.6.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.6.0...@siteed/expo-audio-studio@2.6.1
|
|
493
|
-
[2.6.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.5.0...@siteed/expo-audio-studio@2.6.0
|
|
494
|
-
[2.5.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.4.1...@siteed/expo-audio-studio@2.5.0
|
|
495
|
-
[2.4.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.4.0...@siteed/expo-audio-studio@2.4.1
|
|
496
|
-
[2.4.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.3.1...@siteed/expo-audio-studio@2.4.0
|
|
497
|
-
[2.3.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.3.0...@siteed/expo-audio-studio@2.3.1
|
|
498
|
-
[2.3.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.2.0...@siteed/expo-audio-studio@2.3.0
|
|
499
|
-
[2.2.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.1.1...@siteed/expo-audio-studio@2.2.0
|
|
500
|
-
[2.1.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.1.0...@siteed/expo-audio-studio@2.1.1
|
|
501
|
-
[2.1.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@2.0.1...@siteed/expo-audio-stream@2.1.0
|
|
502
|
-
[2.0.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@2.0.0...@siteed/expo-audio-stream@2.0.1
|
|
503
|
-
[2.0.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.17.0...@siteed/expo-audio-stream@2.0.0
|
|
504
|
-
[1.17.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.16.0...@siteed/expo-audio-stream@1.17.0
|
|
505
|
-
[1.16.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.15.1...@siteed/expo-audio-stream@1.16.0
|
|
506
|
-
[1.15.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.15.0...@siteed/expo-audio-stream@1.15.1
|
|
507
|
-
[1.15.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.14.2...@siteed/expo-audio-stream@1.15.0
|
|
508
|
-
[1.14.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.14.1...@siteed/expo-audio-stream@1.14.2
|
|
509
|
-
[1.14.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.14.0...@siteed/expo-audio-stream@1.14.1
|
|
510
|
-
[1.14.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.13.2...@siteed/expo-audio-stream@1.14.0
|
|
511
|
-
[1.13.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.13.1...@siteed/expo-audio-stream@1.13.2
|
|
512
|
-
[1.13.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.13.0...@siteed/expo-audio-stream@1.13.1
|
|
513
|
-
[1.13.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.12.3...@siteed/expo-audio-stream@1.13.0
|
|
514
|
-
[1.12.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.12.2...@siteed/expo-audio-stream@1.12.3
|
|
515
|
-
[1.12.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.12.1...@siteed/expo-audio-stream@1.12.2
|
|
516
|
-
[1.12.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.12.0...@siteed/expo-audio-stream@1.12.1
|
|
517
|
-
[1.12.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.11.6...@siteed/expo-audio-stream@1.12.0
|
|
518
|
-
[1.11.3]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.11.2...@siteed/expo-audio-stream@1.11.3
|
|
519
|
-
[1.11.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.11.1...@siteed/expo-audio-stream@1.11.2
|
|
520
|
-
[1.11.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.11.0...@siteed/expo-audio-stream@1.11.1
|
|
521
|
-
[1.11.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.10.0...@siteed/expo-audio-stream@1.11.0
|
|
522
|
-
[1.10.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.9.2...@siteed/expo-audio-stream@1.10.0
|
|
523
|
-
[1.9.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.9.1...@siteed/expo-audio-stream@1.9.2
|
|
524
|
-
[1.9.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.9.0...@siteed/expo-audio-stream@1.9.1
|
|
525
|
-
[1.9.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.8.0...@siteed/expo-audio-stream@1.9.0
|
|
526
|
-
[1.8.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.7.2...@siteed/expo-audio-stream@1.8.0
|
|
527
|
-
[1.7.2]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.7.1...@siteed/expo-audio-stream@1.7.2
|
|
528
|
-
[1.7.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.7.0...@siteed/expo-audio-stream@1.7.1
|
|
529
|
-
[1.7.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.6.1...@siteed/expo-audio-stream@1.7.0
|
|
530
|
-
[1.6.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.6.0...@siteed/expo-audio-stream@1.6.1
|
|
531
|
-
[1.5.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.4.0...@siteed/expo-audio-stream@1.5.0
|
|
532
|
-
[1.4.0]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.3.1...@siteed/expo-audio-stream@1.4.0
|
|
533
|
-
[1.3.1]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.3.0...@siteed/expo-audio-stream@1.3.1
|
|
534
|
-
[Unreleased]: https://github.com/deeeed/expo-audio-stream/compare/v1.0.0...HEAD
|
|
535
|
-
[1.0.0]: https://github.com/deeeed/expo-audio-stream/releases/tag/v1.0.0
|
|
466
|
+
- Initial release
|
|
467
|
+
- Real-time audio streaming across iOS, Android, and web
|
|
468
|
+
- Configurable intervals for audio buffer receipt
|
|
469
|
+
- Automated microphone permissions setup in managed Expo projects
|
|
470
|
+
- Background audio recording on iOS
|
|
471
|
+
- Audio features extraction during recording
|
|
472
|
+
- Consistent WAV PCM recording format across all platforms
|
|
473
|
+
|
|
474
|
+
[unreleased]: https://github.com/deeeed/audiolab/compare/@siteed/audio-studio@3.0.1...HEAD
|
|
475
|
+
[3.0.1]: https://github.com/deeeed/audiolab/compare/@siteed/audio-studio@3.0.0...@siteed/audio-studio@3.0.1
|
|
476
|
+
[3.0.0]: https://github.com/deeeed/audiolab/compare/@siteed/audio-studio@2.18.5...@siteed/audio-studio@3.0.0
|