@siteed/expo-audio-studio 2.14.2 → 2.14.3
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
CHANGED
|
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
+
## [2.14.3] - 2025-06-12
|
|
12
|
+
### Changed
|
|
13
|
+
- refactor(AudioRecorderManager): remove analysis bit depth logging for cleaner debug output ([ddaf9e2](https://github.com/deeeed/expo-audio-stream/commit/ddaf9e25c0bf9bad1e3435b9ec08b3b4a27a6161))
|
|
11
14
|
## [2.14.2] - 2025-06-11
|
|
12
15
|
### Changed
|
|
13
16
|
- fix(ios): update compressed file size when primary output is disabled ([9f03ee0](https://github.com/deeeed/expo-audio-stream/commit/9f03ee0b18f1c079e5aaf13267e19f095ad3b7ea))
|
|
@@ -327,7 +330,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
327
330
|
- Feature: Audio features extraction during recording.
|
|
328
331
|
- Feature: Consistent WAV PCM recording format across all platforms.
|
|
329
332
|
|
|
330
|
-
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.
|
|
333
|
+
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-studio@2.14.3...HEAD
|
|
334
|
+
[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
|
|
331
335
|
[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
|
|
332
336
|
[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
|
|
333
337
|
[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
|
|
@@ -1032,12 +1032,10 @@ class AudioRecorderManager(
|
|
|
1032
1032
|
|
|
1033
1033
|
// Log bit depth information for debugging
|
|
1034
1034
|
val configBitDepth = AudioFormatUtils.getBitDepth(recordingConfig.encoding)
|
|
1035
|
-
val analysisBitDepth = analysisData?.bitDepth
|
|
1036
1035
|
LogUtils.d(CLASS_NAME, """
|
|
1037
1036
|
Bit Depth Debug Info:
|
|
1038
1037
|
- Config encoding: ${recordingConfig.encoding}
|
|
1039
1038
|
- Config bit depth: $configBitDepth
|
|
1040
|
-
- Analysis bit depth: $analysisBitDepth
|
|
1041
1039
|
- Audio format: $audioFormat
|
|
1042
1040
|
""".trimIndent())
|
|
1043
1041
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@siteed/expo-audio-studio",
|
|
3
|
-
"version": "2.14.
|
|
3
|
+
"version": "2.14.3",
|
|
4
4
|
"description": "Comprehensive audio processing library for React Native and Expo with recording, analysis, visualization, and streaming capabilities across iOS, Android, and web",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "commonjs",
|