@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.
Files changed (48) hide show
  1. package/CHANGELOG.md +356 -415
  2. package/README.md +1 -1
  3. package/android/src/main/CMakeLists.txt +3 -0
  4. package/build/cjs/AudioAnalysis/audioFeaturesWasm.js +7 -155
  5. package/build/cjs/AudioAnalysis/audioFeaturesWasm.js.map +1 -1
  6. package/build/cjs/AudioAnalysis/audioFeaturesWasm.web.js +165 -0
  7. package/build/cjs/AudioAnalysis/audioFeaturesWasm.web.js.map +1 -0
  8. package/build/cjs/AudioAnalysis/melSpectrogramWasm.js +8 -140
  9. package/build/cjs/AudioAnalysis/melSpectrogramWasm.js.map +1 -1
  10. package/build/cjs/AudioAnalysis/melSpectrogramWasm.web.js +153 -0
  11. package/build/cjs/AudioAnalysis/melSpectrogramWasm.web.js.map +1 -0
  12. package/build/cjs/AudioAnalysis/wasmConfig.js +26 -0
  13. package/build/cjs/AudioAnalysis/wasmConfig.js.map +1 -0
  14. package/build/cjs/index.js +3 -1
  15. package/build/cjs/index.js.map +1 -1
  16. package/build/cjs/prebuilt/wasm/mel-spectrogram.js +18 -0
  17. package/build/esm/AudioAnalysis/audioFeaturesWasm.js +7 -122
  18. package/build/esm/AudioAnalysis/audioFeaturesWasm.js.map +1 -1
  19. package/build/esm/AudioAnalysis/audioFeaturesWasm.web.js +127 -0
  20. package/build/esm/AudioAnalysis/audioFeaturesWasm.web.js.map +1 -0
  21. package/build/esm/AudioAnalysis/melSpectrogramWasm.js +8 -107
  22. package/build/esm/AudioAnalysis/melSpectrogramWasm.js.map +1 -1
  23. package/build/esm/AudioAnalysis/melSpectrogramWasm.web.js +115 -0
  24. package/build/esm/AudioAnalysis/melSpectrogramWasm.web.js.map +1 -0
  25. package/build/esm/AudioAnalysis/wasmConfig.js +21 -0
  26. package/build/esm/AudioAnalysis/wasmConfig.js.map +1 -0
  27. package/build/esm/index.js +1 -0
  28. package/build/esm/index.js.map +1 -1
  29. package/build/esm/prebuilt/wasm/mel-spectrogram.js +18 -0
  30. package/build/types/AudioAnalysis/audioFeaturesWasm.d.ts +3 -15
  31. package/build/types/AudioAnalysis/audioFeaturesWasm.d.ts.map +1 -1
  32. package/build/types/AudioAnalysis/audioFeaturesWasm.web.d.ts +24 -0
  33. package/build/types/AudioAnalysis/audioFeaturesWasm.web.d.ts.map +1 -0
  34. package/build/types/AudioAnalysis/melSpectrogramWasm.d.ts +3 -15
  35. package/build/types/AudioAnalysis/melSpectrogramWasm.d.ts.map +1 -1
  36. package/build/types/AudioAnalysis/melSpectrogramWasm.web.d.ts +16 -0
  37. package/build/types/AudioAnalysis/melSpectrogramWasm.web.d.ts.map +1 -0
  38. package/build/types/AudioAnalysis/wasmConfig.d.ts +4 -0
  39. package/build/types/AudioAnalysis/wasmConfig.d.ts.map +1 -0
  40. package/build/types/index.d.ts +1 -0
  41. package/build/types/index.d.ts.map +1 -1
  42. package/package.json +3 -2
  43. package/src/AudioAnalysis/audioFeaturesWasm.ts +18 -179
  44. package/src/AudioAnalysis/audioFeaturesWasm.web.ts +201 -0
  45. package/src/AudioAnalysis/melSpectrogramWasm.ts +23 -169
  46. package/src/AudioAnalysis/melSpectrogramWasm.web.ts +184 -0
  47. package/src/AudioAnalysis/wasmConfig.ts +24 -0
  48. 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.prepareAudSession` preserves existing session options
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
- ### Added
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
- - Memory safety, WASM lifecycle, and platform bug fixes (#329)
42
- - iOS: audio device switching bugs during active recording
43
- - iOS: `resetToDefaultDevice` correctly resets engine tap when switching back to default input
44
- - iOS: recovery after failed device switch no longer produces silent audio
45
- - iOS: `setupNowPlayingInfo` no longer overrides user-configured audio session options
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
- ### Changed
63
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.18.3 ([61d58e5](https://github.com/deeeed/expo-audio-stream/commit/61d58e57fd624182aef9983745bf82f584ffc2c7))
64
- - fix(expo-audio-studio): include compression data in iOS onAudioStream events ([e0444f3](https://github.com/deeeed/expo-audio-stream/commit/e0444f321803deee1aa5fc4259a3e160a668869f))
65
- - chore: upgrade to Expo SDK 54 (React Native 0.81, React 19.1) (#305) ([f8ff916](https://github.com/deeeed/expo-audio-stream/commit/f8ff916865ae9139282cad088c6b920adb59f6c2))
66
- - Revert "chore: upgrade to Expo SDK 54 (React Native 0.81, React 19.1) (#303)" (#304) ([6ef8a2f](https://github.com/deeeed/expo-audio-stream/commit/6ef8a2f91973055fc026c3190355bb375052b699))
67
- - chore: upgrade to Expo SDK 54 (React Native 0.81, React 19.1) (#303) ([822d82c](https://github.com/deeeed/expo-audio-stream/commit/822d82c007da13fdb8dc85698a7b87f8613e5383))
68
- - feat: properly emit final chunk of audio data in android (#293) ([b468495](https://github.com/deeeed/expo-audio-stream/commit/b46849595562cbc2a0914240e60ebcc225bbb889))
69
- ## [2.18.3] - 2026-02-16
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
- ### Changed
76
- - feat: improved memory monitoring ([55dfe16](https://github.com/deeeed/expo-audio-stream/commit/55dfe16d7e8c372392738d1441776a760e7ecdbe))
77
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.18.0 ([cc80ac5](https://github.com/deeeed/expo-audio-stream/commit/cc80ac5fa7ece05fc9fae031f101163acce2aff4))
59
+
60
+ ### Added
61
+ - Improved memory monitoring
62
+
78
63
  ## [2.18.0] - 2025-08-01
79
- ### Changed
80
- - feat(expo-audio-studio): optimize buffer size on android to prevent oom ([32fcb9b](https://github.com/deeeed/expo-audio-stream/commit/32fcb9b0a965669b3a37c9860998ae46a1d26cd8))
81
- - fix(expo-audio-studio): invalid paused duration on android ([c107258](https://github.com/deeeed/expo-audio-stream/commit/c107258054ebdbc733298c84b8d84b0f9f416e6e))
82
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.17.0 ([8a303b4](https://github.com/deeeed/expo-audio-stream/commit/8a303b4d96988b97604123d74daaa406d9ec517c))
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
- ### Changed
85
- - fix(expo-audio-studio): fix OutOfMemoryError by tracking stream position correctly ([b67e521](https://github.com/deeeed/expo-audio-stream/commit/b67e52142154d07873c5c1ec9c183d524d61e528))
86
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.16.2 ([c4291a8](https://github.com/deeeed/expo-audio-stream/commit/c4291a82cc740b4d4790c69ae7e7cc07f1e8fb1a))
87
- ## [2.16.2] - 2025-07-27
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
- ### Changed
92
- - fix(expo-audio-studio): fix Android audio analysis accumulation showing 0 bytes ([012d478](https://github.com/deeeed/expo-audio-stream/commit/012d478c372db12b9fcf4a49f567d6618eb499f1))
93
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.16.0 ([34c8c0f](https://github.com/deeeed/expo-audio-stream/commit/34c8c0f2f587ecde9adf97c539289b128f0bccc1))
75
+
76
+ ### Fixed
77
+ - Android: audio analysis accumulation showing 0 bytes
78
+
94
79
  ## [2.16.0] - 2025-07-27
95
- ### Changed
96
- - feat(expo-audio-studio): optimize stop recording performance for long recording on android ([4553dc9](https://github.com/deeeed/expo-audio-stream/commit/4553dc9d2bd101a461f3f2eadfed63114f7d1b22))
97
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.15.0 ([1af374a](https://github.com/deeeed/expo-audio-stream/commit/1af374ada18ec2cd4edeb151fc0e91e54f783b9e))
80
+
81
+ ### Performance
82
+ - Android: optimize stop recording performance for long recordings
83
+
98
84
  ## [2.15.0] - 2025-07-15
99
- ### Changed
100
- - feat(android): add showPauseResumeActions option to notification config ([7456153](https://github.com/deeeed/expo-audio-stream/commit/7456153beb3f5041bd0199595b29d6b62c6b4c8f))
101
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.14.9 ([34ea510](https://github.com/deeeed/expo-audio-stream/commit/34ea5104fe661743627b2234f95382ba6980a44c))
102
- ## [2.14.9] - 2025-07-15
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
- ### Changed
119
- - fix(plugin): respect enableDeviceDetection configuration for Android permissions ([32647c8](https://github.com/deeeed/expo-audio-stream/commit/32647c8d80bd33406f7dcabcf2823beaf3ba3b62))
120
- - fix(audio-studio): add missing Bluetooth_ADMIN permission for device detection ([5a56900](https://github.com/deeeed/expo-audio-stream/commit/5a5690025a3c2ac279b853e21470015935b9a469))
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
- - refactor(AudioRecorderManager): remove analysis bit depth logging for cleaner debug output ([ddaf9e2](https://github.com/deeeed/expo-audio-stream/commit/ddaf9e25c0bf9bad1e3435b9ec08b3b4a27a6161))
98
+ - Remove analysis bit depth logging for cleaner debug output
99
+
124
100
  ## [2.14.2] - 2025-06-11
125
- ### Changed
126
- - fix(ios): update compressed file size when primary output is disabled ([9f03ee0](https://github.com/deeeed/expo-audio-stream/commit/9f03ee0b18f1c079e5aaf13267e19f095ad3b7ea))
127
- - feat(expo-audio-studio): add platform limitations validation and documentation ([7e062ff](https://github.com/deeeed/expo-audio-stream/commit/7e062ff837865b735f0cabdb9e2b755ce55a94c6))
128
- - docs: reorg ([0251063](https://github.com/deeeed/expo-audio-stream/commit/0251063893c6464ec6410ec6e08866e12d3113a7))
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
- ### Changed
131
- - fix(android): Fix duration returning 0 when primary output is disabled (#244) ([38d6f50](https://github.com/deeeed/expo-audio-stream/commit/38d6f50c084a10329be33a0f1c123aa9f457c371))
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
- ### Changed
134
- - feat(expo-audio-studio): comprehensive cross-platform stop recording performance optimization ([b3ed474](https://github.com/deeeed/expo-audio-stream/commit/b3ed474d91994698fe082354621adc98e758557e))
114
+
115
+ ### Performance
116
+ - Comprehensive cross-platform stop recording performance optimization
117
+
135
118
  ## [2.13.2] - 2025-06-10
136
- ### Changed
137
- - fix: invalid type exports ([18340ea](https://github.com/deeeed/expo-audio-stream/commit/18340eac9cfef39691637400fc6af811d5b004df))
138
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.13.1 ([9ccce85](https://github.com/deeeed/expo-audio-stream/commit/9ccce858174254387aac44d30853c908707d8254))
119
+
120
+ ### Fixed
121
+ - Invalid type exports
122
+
139
123
  ## [2.13.1] - 2025-06-09
140
- ### Changed
141
- - feat(investigation): resolve Issue #251 - comprehensive sub-100ms audio events analysis (#270) ([4813f1e](https://github.com/deeeed/expo-audio-stream/commit/4813f1ef05f3856b58ec8fde95b7b8909feb513d))
142
- - fix(deps): update expo-modules-core peer dependency for Expo SDK 53 compatibility ([40b946f](https://github.com/deeeed/expo-audio-stream/commit/40b946f83eecd3fdcedfe7a2cbac62f1207a4ff0))
143
- - docs: updated docs site ([8a01a97](https://github.com/deeeed/expo-audio-stream/commit/8a01a97ebee927a2dfa0a7cb40b11329410509d2))
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
- ### Changed
146
- - feat(expo-audio-studio): enhance device detection and management system ([97ceef0](https://github.com/deeeed/expo-audio-stream/commit/97ceef003ddb8eb5246cda8a5a00ddc75bf665a0))
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
- - refactor(expo-audio-studio): adjust audio focus request timing in AudioRecorderManager ([317367c](https://github.com/deeeed/expo-audio-stream/commit/317367cb29fa09016aa73884f2f51e9cfdee1086))
150
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.12.2 ([14db4eb](https://github.com/deeeed/expo-audio-stream/commit/14db4ebfdeb9181e82e810d61283738d41c40a1a))
139
+ - Adjust audio focus request timing in `AudioRecorderManager`
140
+
151
141
  ## [2.12.2] - 2025-06-07
152
- ### Changed
153
- - fix: audio focus strategy implementation for Android background recording (#267) ([5b7b7ed](https://github.com/deeeed/expo-audio-stream/commit/5b7b7eda86bbd65becbe6bab44a44cdf6a1fb17d))
154
- ## [2.12.1] - 2025-06-07
155
- ### Changed
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
- ### Changed
159
- - fix(android): resolve PCM streaming duration calculation bug (Issue #263) (#265) ([a0c5500](https://github.com/deeeed/expo-audio-stream/commit/a0c550099fec9d6b0d486440819173d9d9275908))
160
- - feat(expo-audio-studio): implement Android-only audioFocusStrategy (#264) ([cc77226](https://github.com/deeeed/expo-audio-stream/commit/cc7722605a5502a58b8236b610c9bdccf5f7f561))
161
- - docs: fix comment formatting in OutputConfig interface for clarity ([07fac61](https://github.com/deeeed/expo-audio-stream/commit/07fac61245843c601709bb7576db6e48b2106cf7))
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
- ### Changed
164
- - refactor(expo-audio-studio): remove android/build.gradle and add device disconnection fallback tests ([36fe9a9](https://github.com/deeeed/expo-audio-stream/commit/36fe9a921505e136ea50406d4b664c597293ffd8))
165
- - fix(expo-audio-studio): enforce 10ms minimum interval on both platforms (#262) ([035fc07](https://github.com/deeeed/expo-audio-stream/commit/035fc076334c169a2371527bad0ca60f222d10ee))
166
- - fix(expo-audio-studio): add proper MediaCodec resource cleanup in AudioProcessor ([2b069b6](https://github.com/deeeed/expo-audio-stream/commit/2b069b6ae512f97fae80df1b8cb38bb3a14538e5))
167
- - feat(expo-audio-studio): add audio format enhancement specification and tests ([ace22a2](https://github.com/deeeed/expo-audio-stream/commit/ace22a22cf6c94ec58ddd4f6cb44f77dd383d6bc))
168
- - feat\!: Add M4A support with preferRawStream option (#261) ([c9faeb0](https://github.com/deeeed/expo-audio-stream/commit/c9faeb01cd5dcd7407f73a0f7e6d5822adb862a4))
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
- ### Changed
171
- - fix(expo-audio-studio): prevent durationMs returning 0 on iOS (#244) (#260) ([595e5d5](https://github.com/deeeed/expo-audio-stream/commit/595e5d56991c9fa88c2fa4e39efb197916cb8b84))
172
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.10.5 ([d8c6e1d](https://github.com/deeeed/expo-audio-stream/commit/d8c6e1de72ccb0c8885a4f5f3326e3229d9dfd92))
164
+
165
+ ### Fixed
166
+ - iOS: prevent `durationMs` returning 0 (#244, #260)
167
+
173
168
  ## [2.10.5] - 2025-06-04
174
- ### Changed
175
- - fix(expo-audio-studio): enable audio streaming when primary output is disabled on iOS (#259) ([1d2bb92](https://github.com/deeeed/expo-audio-stream/commit/1d2bb9280e7d596ed77de30b37e043fd7f8f8cc8))
176
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.10.4 ([32f8c9e](https://github.com/deeeed/expo-audio-stream/commit/32f8c9ee1d65f52370798654be389de1569e851f))
169
+
170
+ ### Fixed
171
+ - iOS: enable audio streaming when primary output is disabled (#259)
172
+
177
173
  ## [2.10.4] - 2025-06-03
178
- ### Changed
179
- - fix(expo-audio-studio): resolve Swift compilation scope error in AudioStreamManager (#256) ([b44bf3d](https://github.com/deeeed/expo-audio-stream/commit/b44bf3d6d85a3f953d84b024bba828163354a40b))
180
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.10.3 ([5e23474](https://github.com/deeeed/expo-audio-stream/commit/5e23474f9d0b0bcf643098b85779d413d0dc9348))
174
+
175
+ ### Fixed
176
+ - iOS: resolve Swift compilation scope error in `AudioStreamManager` (#256)
177
+
181
178
  ## [2.10.3] - 2025-06-02
182
- ### Changed
183
- - fix: prevent UninitializedPropertyAccessException crash in developer menu (#250) ([83c1fd7](https://github.com/deeeed/expo-audio-stream/commit/83c1fd75c9aa022eab1125df251700e3e87c4371))
184
- - fix: return compression info when primary output is disabled (issue #244) (#249) ([31d97c1](https://github.com/deeeed/expo-audio-stream/commit/31d97c1f7602aaf62969d26cc2fc2b7984ab24cc))
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
- ### Changed
187
- - fix: Buffer size calculation and document duplicate emission fix for … (#248) ([204dde5](https://github.com/deeeed/expo-audio-stream/commit/204dde5137620e80c9a22a5a27a395a2149f33f0))
188
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.10.1 ([0acbfc5](https://github.com/deeeed/expo-audio-stream/commit/0acbfc5b145b478cc913baf7fd798573d8c2f305))
185
+
186
+ ### Fixed
187
+ - Buffer size calculation and duplicate emission fix (#248)
188
+
189
189
  ## [2.10.1] - 2025-05-27
190
- ### Changed
191
- - fix(useAudioRecorder): update intervalId type for better type safety ([dc0021a](https://github.com/deeeed/expo-audio-stream/commit/dc0021ae0dc2b1e31f61c1340529b655f85447fc))
192
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.10.0 ([bb8418f](https://github.com/deeeed/expo-audio-stream/commit/bb8418f2156d531377247a6d4095112560ff975f))
190
+
191
+ ### Fixed
192
+ - `useAudioRecorder`: update `intervalId` type for better type safety
193
+
193
194
  ## [2.10.0] - 2025-05-26
194
- ### Changed
195
- - chore(expo-audio-studio): update @siteed/design-system to version 0.51.0 and refactor recording configuration (#245) ([6486c66](https://github.com/deeeed/expo-audio-stream/commit/6486c66d687093b5257fddcce575d932b6a6443b))
196
- - feat(expo-audio-studio): add buffer duration control and skip file writing options ([bfdbcb8](https://github.com/deeeed/expo-audio-stream/commit/bfdbcb8bac7c0641d6bacfa9b6fc4e64c2621baa))
197
- - docs: enhance contribution guidelines with Test-Driven Development practices ([2c04eff](https://github.com/deeeed/expo-audio-stream/commit/2c04eff1f6d6d3c567aad8f7d7174b7f1ad533aa))
198
- - feat(expo-audio-studio): enhance testing framework and add instrumented tests (#242) ([6e823ec](https://github.com/deeeed/expo-audio-stream/commit/6e823ec79c77ff34441b5acf757fdbac0a974e46))
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
- ### Changed
201
- - refactor(WebRecorder): remove unused compression logic and clean up blob creation ([91f6bba](https://github.com/deeeed/expo-audio-stream/commit/91f6bba6a3afa9fe71811c2c67a5703b8751830c))
202
- - feat: Add Web Audio Test Page and Enhance web Audio Chunk Handling (#240) ([0a3cce0](https://github.com/deeeed/expo-audio-stream/commit/0a3cce0362ecaae70566805625e5a2cbdc289291))
203
- - docs: update README and documentation to highlight experimental advanced audio feature extraction capabilities and performance considerations ([57fc4de](https://github.com/deeeed/expo-audio-stream/commit/57fc4de3967292b20b2b62190b7fba566f352ffd))
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
- ### Changed
216
- - fix(expo-audio-studio): expo plugin setup ([78810c1](https://github.com/deeeed/expo-audio-stream/commit/78810c1682fc357ed79297971d53d61de88b901f))
206
+
207
+ ### Fixed
208
+ - Expo plugin setup
209
+
217
210
  ## [2.8.3] - 2025-05-06
211
+
218
212
  ### Changed
219
- - chore(expo-audio-studio): update plugin configuration to use ESM format and streamline build process ([97432eb](https://github.com/deeeed/expo-audio-stream/commit/97432eb2944f43e03a1464fdc166a49392582b08))
220
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.2 ([255c802](https://github.com/deeeed/expo-audio-stream/commit/255c802feacec8e4ba21bf442381062620d9b5f0))
213
+ - Update plugin configuration to use ESM format
214
+
221
215
  ## [2.8.2] - 2025-05-06
216
+
222
217
  ### Changed
223
- - chore(expo-audio-studio): update TypeScript configurations for dual module support and enhance CommonJS compatibility ([7377a5f](https://github.com/deeeed/expo-audio-stream/commit/7377a5fd3925a21d8628eb31b64c8c65102a1713))
224
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.1 ([78721e4](https://github.com/deeeed/expo-audio-stream/commit/78721e41bbc9e4e999118474c887cca7b5420915))
218
+ - TypeScript configurations for dual module (ESM/CJS) support
219
+
225
220
  ## [2.8.1] - 2025-05-06
226
- ### Changed
227
- - feat(expo-audio-studio): implement dual module format (ESM/CommonJS) to resolve module resolution issues (#235) ([58c5a94](https://github.com/deeeed/expo-audio-stream/commit/58c5a94ecf2fdcefa554b2f8664743730001e6d8))
228
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.8.0 ([a879e93](https://github.com/deeeed/expo-audio-stream/commit/a879e93bb7b5d27ab5ee764c903e890550c8dda5))
229
- ## [2.8.0] - 2025-05-04
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
- ### Changed
236
- - fix: Enhance iOS Background Audio Recording and Audio Format Conversion (#228) ([c17169b](https://github.com/deeeed/expo-audio-stream/commit/c17169bf9275706abf287712acc30df2f1814ed7))
237
- - chore(expo-audio-studio): improve build script for cjs esm conversion ([767dfbe](https://github.com/deeeed/expo-audio-stream/commit/767dfbe5da0f1550b689f6859e2e5fccf7f8141c))
238
- ## [2.6.3] - 2025-05-03
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
- ### Changed
243
- - fix(audio-studio): ensure foreground-only audio recording works with FOREGROUND_SERVICE #202 (#221) ([abc450c](https://github.com/deeeed/expo-audio-stream/commit/abc450cb73968cc260e430758df9b72e00f75ef7))
244
- - chore(expo-audio-studio): release @siteed/expo-audio-studio@2.6.1 ([9191a2c](https://github.com/deeeed/expo-audio-stream/commit/9191a2cec8e21cd03a0d5be59d823583d449d9c9))
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
- ### Changed
247
- - fix(expo-audio-studio): Resolve iOS HW Format Mismatch Crash and Enhance Logging (#220) ([4909f76](https://github.com/deeeed/expo-audio-stream/commit/4909f7646fcf682fcdaed84988b8d8e58b7b626c))
236
+
237
+ ### Fixed
238
+ - iOS: resolve hardware format mismatch crash and enhance logging (#220)
239
+
248
240
  ## [2.6.0] - 2025-05-01
249
- ### Changed
250
- - fix(audio-studio): resolve web audio recording issue without compression #217 (#219) ([2daa373](https://github.com/deeeed/expo-audio-stream/commit/2daa373ec507550ffa4571699fb1c680e2df8f14))
241
+
242
+ ### Fixed
243
+ - Web: resolve audio recording issue without compression (#217, #219)
244
+
251
245
  ## [2.5.0] - 2025-04-30
252
- ### Changed
253
- - fix(ios): ensure complete audio data emission on recording stop/pause (#215) ([236e7aa](https://github.com/deeeed/expo-audio-stream/commit/236e7aa040d11626f06da9bbf5746cdcb6f2b457))
254
- - feat(audio-device): Complete Android implementation for audio device API (#214) ([cedc8d2](https://github.com/deeeed/expo-audio-stream/commit/cedc8d2fbdd5317652ee31c70ee596ec946cf22e))
255
- - feat(audio-device): Implement cross-platform audio device detection, selection, and fallback handling (#213) ([023b8a1](https://github.com/deeeed/expo-audio-stream/commit/023b8a1d9844bff9f57781860e38a53eb4684fda))
256
- - feat: Add Zero-Latency Audio Recording with `prepareRecording` API (#211) ([30cb56c](https://github.com/deeeed/expo-audio-stream/commit/30cb56c07d14e7012bff9a4c4d458d5a49cf494e))
257
- - docs: update api references for v2.4.1 ([b15daef](https://github.com/deeeed/expo-audio-stream/commit/b15daef29a631eb696d5a28422f9cf32b080027e))
258
- - chore(sherpa-onnx-demo): Restructure WebAssembly Setup and Clean Up Assets (#208) ([7c2adff](https://github.com/deeeed/expo-audio-stream/commit/7c2adffc5ff59391315cb8edaeaae2ab676dd2ba))
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
- ### Changed
261
- - feat(audio-stream): enhance background audio handling and permission checks (#200) ([60befbe](https://github.com/deeeed/expo-audio-stream/commit/60befbedc9d3cbcc1fc684254d812381e5905e43))
256
+
257
+ ### Added
258
+ - Enhanced background audio handling and permission checks (#200)
259
+
262
260
  ## [2.4.0] - 2025-04-03
263
- ### Changed
264
- - fix(audio-stream): resolve iOS sample rate mismatch and enhance recording stability (#198) ([05bfc61](https://github.com/deeeed/expo-audio-stream/commit/05bfc6159e7f71fb1d70c3de24fa487cdfb73a62))
265
- - feat(audio-stream): enhance Android permission handling for phone state and notifications (#196) ([63a259d](https://github.com/deeeed/expo-audio-stream/commit/63a259da2b175a5865895306c204b84a242f1c97))
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
- - feat: no external crc32 libs (#195) ([394b3b3](https://github.com/deeeed/expo-audio-stream/commit/394b3b3bb04e3f969db2a502af85d69c0f955b97))
269
+ - Remove external CRC32 library dependency (#195)
270
+
269
271
  ## [2.3.0] - 2025-03-29
270
- ### Changed
271
- - fix: always generate a new UUID unless filename is provided (#182) ([f98a9a5](https://github.com/deeeed/expo-audio-stream/commit/f98a9a52393829e6c4a79aee3575fbfcc9416c19))
272
- - refactor(audio-studio): introduce constants for silence threshold and WAV header size (#188) ([e8aa329](https://github.com/deeeed/expo-audio-stream/commit/e8aa3298bd6ba029d38898360b7df26b3fd5485f))
273
- - docs: enhance installation and API reference documentation for phone call handling (#187) ([fcaece1](https://github.com/deeeed/expo-audio-stream/commit/fcaece18cf046d970b9659f3f12a19deb096bceb))
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
- - refactor(audio-studio): implement platform-specific CRC32 handling ([b61a3d7](https://github.com/deeeed/expo-audio-stream/commit/b61a3d743914e66888ec6cc4cb8e010ff1992698))
277
- - chore: update Expo dependencies and remove invalid design-system version ([16e5007](https://github.com/deeeed/expo-audio-stream/commit/16e50077690b55977c22fbcb08be75834146ff47))
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
- ### Changed
285
- - feat(docs): enhance audio processing documentation and examples (#158) ([26afd49](https://github.com/deeeed/expo-audio-stream/commit/26afd4938e1c626294f40b50a84fe15f5c2bb6a1))
286
- - feat: Add Mel Spectrogram Extraction and Language Detection to Audio Processing (#157) ([4129dee](https://github.com/deeeed/expo-audio-stream/commit/4129dee87c27dd5a9911c85e3dbf045507876cc1))
287
- - feat: enhance audio import functionality and decibel visualization (#156) ([2dbecc7](https://github.com/deeeed/expo-audio-stream/commit/2dbecc7bd0ea46edd80c2b0e28dd2a0525953362))
288
- - feat(trim): Implement iOS trim support with custom filename and format improvements (#152) ([dd49be4](https://github.com/deeeed/expo-audio-stream/commit/dd49be42bccbf3ae6cced8c3662237e1668ec2de))
289
- - feat: Add Sample Rate Control and Web Trimming Support to Expo Audio Stream (#151) ([9158eec](https://github.com/deeeed/expo-audio-stream/commit/9158eeccc10e25ac77ba3a99185b4dbc5abfb353))
290
- - feat: Enhance audio trimming with optimized processing and detailed feedback (#150) ([41a6945](https://github.com/deeeed/expo-audio-stream/commit/41a694528d1e803dc0012948eec4edfdc336b4fc))
291
- - feat(trim): add audio trimming functionality with visualization and preview (Android only) (#149) ([cba03dc](https://github.com/deeeed/expo-audio-stream/commit/cba03dc920eb8a1f111b45e8404a42e48076b7cd))
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
- - refactor: update background mode handling for audio stream plugin ([e7e98cc](https://github.com/deeeed/expo-audio-stream/commit/e7e98cc60b7965770dcf25e9ae74cb356e1e7097))
296
- - chore(expo-audio-stream): release @siteed/expo-audio-stream@2.0.0 ([356d3f4](https://github.com/deeeed/expo-audio-stream/commit/356d3f40ffb66806eeecb86d12bcbe5d60b7eea6))
293
+ - Update background mode handling for audio stream plugin
294
+
297
295
  ## [2.0.0] - 2025-02-27
298
- ### Changed
299
- - feat(playground): Enhance Audio Playground with Improved UX and Sample Audio Loading (#148) ([09d2794](https://github.com/deeeed/expo-audio-stream/commit/09d27940dcffa60e662c828742f4577bca5327f9))
300
- - feat: Implement Enhanced Audio Transcription Workflow with Configurable Extraction and UI Updates (#147) ([c658c7e](https://github.com/deeeed/expo-audio-stream/commit/c658c7e8531dd731b01d9347bc7c744470a3b7b9))
301
- - fix: audio recording reliability improvements and web IndexedDB management (#146) ([d4fa245](https://github.com/deeeed/expo-audio-stream/commit/d4fa245c46d487fe50c6454165efc2e1032ec126))
302
- - feat(transcription): refactor and unify transcription services across platforms (#145) ([a94b905](https://github.com/deeeed/expo-audio-stream/commit/a94b90562fb2112f712f78c03ca6a5110d6b1401))
303
- - feat(audio): enhance checksum verification and audio segment analysis (#143) ([49b6587](https://github.com/deeeed/expo-audio-stream/commit/49b65877d1fd9922f25b4892261c4fedf02ba3c3))
304
- - feat(playground): implement cross-platform ONNX runtime with Silero VAD model (#142) ([4a94639](https://github.com/deeeed/expo-audio-stream/commit/4a9463995f1eadf6531a2b4d6d057e90da097920))
305
- - feat(audio-analysis): enhance audio analysis and visualization capabilities (#141) ([ecf8f5d](https://github.com/deeeed/expo-audio-stream/commit/ecf8f5daf967bf27afb827c8cf6bca7510ce7b4e))
306
- - android 15 (#140) ([5321a3c](https://github.com/deeeed/expo-audio-stream/commit/5321a3c805d22e6824fd11fee4290987d550bd06))
307
- - refactor(audio): consolidate audio analysis APIs and migrate to segment-based processing (#139) ([5d45da8](https://github.com/deeeed/expo-audio-stream/commit/5d45da871ee1849898405ee4bf8bf8d296aebc48))
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
- ### Changed
318
- - feat(web): add audio interval analysis ([281b7e6](https://github.com/deeeed/expo-audio-stream/commit/281b7e6b1136afe0569450a9d1e3d5f01da7af28))
319
- - feat(android): implement interval visualization android ([7e9678e](https://github.com/deeeed/expo-audio-stream/commit/7e9678e23b82d8fd3d032fb1d802c925dcff254a))
320
- - feat(playground): implement intervalAnalysis and validate iOS settings (#126) ([3d35adf](https://github.com/deeeed/expo-audio-stream/commit/3d35adfcc68593c39a72a5e72b7ddf1e6ce6f1fd))
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
- ### Changed
324
- - fix(expo-audio-stream): prevent adding iOS background modes when disabled ([5c9d09c](https://github.com/deeeed/expo-audio-stream/commit/5c9d09c715ce008fe72177431224a10f5fd7a865))
325
- - fix(ios): replace CallKit with AVAudioSession for phone call detection ([e3b664b](https://github.com/deeeed/expo-audio-stream/commit/e3b664ba6925c379b323ded5fc408154e5f092c6))
326
- - chore(expo-audio-stream): release @siteed/expo-audio-stream@1.15.1 ([cbc3d10](https://github.com/deeeed/expo-audio-stream/commit/cbc3d10661a415811f1fe46cb3acaf63451a9df9))
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
- ### Changed
329
- - fix: restore Opus compression support on iOS (#122) ([06614e6](https://github.com/deeeed/expo-audio-stream/commit/06614e6d96fa2a6af56edf0fd2e2b3966e13c8f7))
330
- - feat: dont block while emitting audio analysis ([01d91d1](https://github.com/deeeed/expo-audio-stream/commit/01d91d1504ccda8ad3569980c79fcf4ae4526a76))
331
- - chore(expo-audio-stream): release @siteed/expo-audio-stream@1.15.0 ([f94c601](https://github.com/deeeed/expo-audio-stream/commit/f94c6016ba4ce968cafbf68644199405f5991d7f))
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
- ### Changed
334
- - fix(ios): improve audio recording interruption handling and auto-resume functionality (#119) ([7767dff](https://github.com/deeeed/expo-audio-stream/commit/7767dff09c7c8d2f2dc8558d24fd2419cb981f4d))
335
- - fix(android): improve background recording and call interruption handling (#118) ([bf19fe9](https://github.com/deeeed/expo-audio-stream/commit/bf19fe92cadbcc080c27a8aa06ba9a2f6ca841b0))
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
- - fix: update STOP action to clear recording metadata ([3484f76](https://github.com/deeeed/expo-audio-stream/commit/3484f76331c0cc83e2384dd18a7f4555f5c5ce8d))
330
+
331
+ ### Fixed
332
+ - Clear recording metadata on STOP action
333
+
338
334
  ## [1.14.1] - 2025-02-12
339
- - fix: enable background recording by default and improve audio playground (#114) ([2f60d5e](https://github.com/deeeed/expo-audio-stream/commit/2f60d5edd96ea6d0db7cf35614bc12dcd8d9c6ed))
335
+
336
+ ### Fixed
337
+ - Enable background recording by default (#114)
338
+
340
339
  ## [1.14.0] - 2025-02-12
341
- - fix: keepAwake issue on ios and auto resume after call (#113) ([ed8e184](https://github.com/deeeed/expo-audio-stream/commit/ed8e184c23ba26973cc9f716e1506d4d7ac4a73d))
340
+
341
+ ### Fixed
342
+ - `keepAwake` issue on iOS and auto-resume after call (#113)
343
+
342
344
  ## [1.13.2] - 2025-02-10
343
- - fix: ensure foreground service starts within required timeframe ([60dad52](https://github.com/deeeed/expo-audio-stream/commit/60dad5237c11b9a60e6239701317d52c56625d6e))
344
- ## [1.13.1] - 2025-02-10
345
- - readme update with latest demos
345
+
346
+ ### Fixed
347
+ - Ensure foreground service starts within required timeframe
348
+
346
349
  ## [1.13.0] - 2025-02-09
347
- - Audiodecode (#104) ([173f589](https://github.com/deeeed/expo-audio-stream/commit/173f589ebe8763f7361088d150bba1d4bd2c4154))
348
- - fix: resolve background recording issues and improve status checking (#103) ([a174d50](https://github.com/deeeed/expo-audio-stream/commit/a174d50932b2ee4682f4bd6edb3eaa9a7d579bfc))
349
- ## [1.12.3] - 2025-02-08
350
- - fix: infinite rerender issue ([54a6a84](https://github.com/deeeed/expo-audio-stream/commit/54a6a8414688c9fbf897c56503c0091dcaf55e26))
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
- - fix: improve audio recording interruption handling and consistency (#98) ([0fd5a146](https://github.com/deeeed/expo-audio-stream/pull/98))
358
+
359
+ ### Fixed
360
+ - Improve audio recording interruption handling and consistency (#98)
361
+
353
362
  ## [1.12.0] - 2025-01-31
354
- - feat: add call state checks before starting or resuming recording (#94) ([63e70a0](https://github.com/deeeed/expo-audio-stream/commit/63e70a09f70dd8e5798094b360cf7ec8de1275e9))
355
- - feat: add custom filename and directory support for audio recordings (#92) ([2f30f9d](https://github.com/deeeed/expo-audio-stream/commit/2f30f9db2558c456f93f31b79b01cd54a57f392b))
356
- - feat: enhance compressed recording info with file size (#90) ([47254aa](https://github.com/deeeed/expo-audio-stream/commit/47254aa8cb3ae1c01138ebebce1c1d8c65afd794))
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
- - disable duplicate notification alerts for audio stream (#82) ([12f9992](https://github.com/deeeed/expo-audio-stream/commit/12f999247cdd6b08753bcf1b481582a604826383))
359
- - feat(deps): update expo packages and dependencies to latest patch versions (#81) ([3ed0526](https://github.com/deeeed/expo-audio-stream/commit/3ed0526545623530a10757f1bbd7f877a2c31296))
370
+
371
+ ### Fixed
372
+ - Disable duplicate notification alerts (#82)
373
+
360
374
  ## [1.11.2] - 2025-01-22
361
- - resources not cleanup properly on app kill (#80) ([7d522a5](https://github.com/deeeed/expo-audio-stream/commit/7d522a531e70065b99758aa3a4c669769fdbd110))
362
- ## [1.11.1] - 2025-01-22
363
- - chore: force deployment of 1.11.1
375
+
376
+ ### Fixed
377
+ - Resources not cleaned up properly on app kill (#80)
378
+
364
379
  ## [1.11.0] - 2025-01-22
365
- - feat(audio): add intelligent call interruption handling & compression improvements ([f8f6187](https://github.com/deeeed/expo-audio-stream/pull/78))
380
+
381
+ ### Added
382
+ - Intelligent call interruption handling and compression improvements (#78)
383
+
366
384
  ## [1.10.0] - 2025-01-14
367
- - add support for pausing and resuming compressed recordings ([bc3f629](https://github.com/deeeed/expo-audio-stream/commit/bc3f6295d060396325e0f008ff00b3be9c8722cd))
368
- - optimize notification channel settings ([daa075e](https://github.com/deeeed/expo-audio-stream/commit/daa075e668f8faf0b8d2849e18c37384bdd293b8))
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
- - ios bitrate verification to prevent invalid values ([035a180](https://github.com/deeeed/expo-audio-stream/commit/035a1800833264edcc59724aaa8a2e12d5c78dc2))
391
+
392
+ ### Fixed
393
+ - iOS: bitrate verification to prevent invalid values
394
+
371
395
  ## [1.9.1] - 2025-01-12
372
- - ios potentially missing compressed file info ([88a628c](https://github.com/deeeed/expo-audio-stream/commit/88a628c35f2bfd626a2a5de1eb6950efd814619d))
396
+
397
+ ### Fixed
398
+ - iOS: potentially missing compressed file info
399
+
373
400
  ## [1.9.0] - 2025-01-11
374
- - feat(web-audio): optimize memory usage and streaming performance for web audio recording (#75) ([7b93e12](https://github.com/deeeed/expo-audio-stream/commit/7b93e12aae4bc0599b06b48ca34a60f65587fc75))
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
- - feat(audio): implement audio compression support ([ff4e060](https://github.com/deeeed/expo-audio-stream/commit/ff4e060fef1061804c1cc0126d4344d2d50daa9a))
406
+
407
+ ### Added
408
+ - Audio compression support
409
+
377
410
  ## [1.7.2] - 2025-01-07
378
- - fix(audio-stream): correct WAV header handling in web audio recording ([9ba7de5](https://github.com/deeeed/expo-audio-stream/commit/9ba7de5b96ca4cc937dea261c80d3fda9c99e8f4))
411
+
412
+ ### Fixed
413
+ - Web: correct WAV header handling in audio recording
414
+
379
415
  ## [1.7.1] - 2025-01-07
380
- - update notification to avoid triggering new alerts (#71) ([32dcfc5](https://github.com/deeeed/expo-audio-stream/commit/32dcfc55daf3236babefc17016f329c177d466fd))
416
+
417
+ ### Fixed
418
+ - Notification: avoid triggering new alerts on update (#71)
419
+
381
420
  ## [1.7.0] - 2025-01-05
382
- - feat(playground): enhance app configuration and build setup for production deployment (#58) ([929d443](https://github.com/deeeed/expo-audio-stream/commit/929d443145378b1430d215db5c00b13758420e2b))
383
- - chore(expo-audio-stream): release @siteed/expo-audio-stream@1.6.1 ([084e8ad](https://github.com/deeeed/expo-audio-stream/commit/084e8adb91da7874c9e608b55d9c7b2ffd7a8327))
384
- - fix(ios): improve audio resampling and duration tracking (#69) ([51bef49](https://github.com/deeeed/expo-audio-stream/commit/51bef493b8e167852c64b8c66a9f8a14cd34f99c))
385
- - handle paused state in stopRecording (#68) ([15eac9b](https://github.com/deeeed/expo-audio-stream/commit/15eac9bfcc3203e4a5eb5f236286ed72aafde722))
386
- - reset audio recording state properly on iOS and Android (#66) ([61e9c26](https://github.com/deeeed/expo-audio-stream/commit/61e9c261fb3a979be1894e537233d6e5a4fbdae4))
387
- - total size doesnt reset on new recording android (#64) ([f7da57b](https://github.com/deeeed/expo-audio-stream/commit/f7da57ba9d6f25870c130c54a049ba4cfad1c444))
388
- ## [1.6.1] - 2024-12-11
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
- - feat(web): implement throttling and optimize event processing (#49) ([da28765](https://github.com/deeeed/expo-audio-stream/commit/da2876524c2c9d6e0a980fde40a0197b929d8a7f))
404
- ## [1.3.0] - 2024-11-28
429
+
405
430
  ### Added
406
- - refactor(permissions): standardize permission status response structure across platforms (#44) ([7c9c800](https://github.com/deeeed/expo-audio-stream/commit/7c9c800d83b7cea3516643371484d5e1f3b99e4c))
407
- - fix(web): add temporary worklet initialization patch for reanimated ([2afcf02](https://github.com/deeeed/expo-audio-stream/commit/2afcf02ddc982e18a419f0132bc42200f3fdebb1))
408
- - feat: update expo-modules-core ([54ed5c5](https://github.com/deeeed/expo-audio-stream/commit/54ed5c59affa46fdf8cdc2e8048766247a4ed16c))
409
- - feat: latest expo fixes ([9cc5ac3](https://github.com/deeeed/expo-audio-stream/commit/9cc5ac39751999e5b33e11c16355557143d68d10))
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
- - docs(license): add MIT license to all packages (6 files changed)
414
- - fix(expo-audio-stream): return actual recording settings from startRecording on iOS #37
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
- - plugin setup do not include 'notification' config by default to prevent ios version mismatch.
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
- - Feature: `keepAwake` Continue recording when app is in background (default is true)
425
- - Feature: Customizable recording notifications for Android and iOS
426
- - Android: Rich notification support with live waveform visualization
427
- - Android: Configurable notification actions, colors, and priorities
428
- - iOS: Integration with media player
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
- - Support bluetooth headset on ios
432
- - Fixes: android not reading custom interval audio update
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 of @siteed/expo-audio-stream.
436
- - Feature: Real-time audio streaming across iOS, Android, and web.
437
- - Feature: Configurable intervals for audio buffer receipt.
438
- - Feature: Automated microphone permissions setup in managed Expo projects.
439
- - Feature: Background audio recording on iOS.
440
- - Feature: Audio features extraction during recording.
441
- - Feature: Consistent WAV PCM recording format across all platforms.
442
-
443
- [unreleased]: https://github.com/deeeed/audiolab/compare/@siteed/audio-studio@3.0.0...HEAD
444
- [3.0.0]: https://github.com/deeeed/audiolab/compare/@siteed/audio-studio@2.18.6...@siteed/audio-studio@3.0.0
445
- [2.18.5]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.18.4...@siteed/expo-audio-studio@2.18.5
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