@siteed/expo-audio-stream 1.13.0 → 1.13.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 +6 -2
- package/README.md +20 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,8 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
## [1.13.
|
|
11
|
+
## [1.13.1] - 2025-02-10
|
|
12
12
|
|
|
13
|
+
## [1.13.0] - 2025-02-09
|
|
14
|
+
- Audiodecode (#104) ([173f589](https://github.com/deeeed/expo-audio-stream/commit/173f589ebe8763f7361088d150bba1d4bd2c4154))
|
|
15
|
+
- fix: resolve background recording issues and improve status checking (#103) ([a174d50](https://github.com/deeeed/expo-audio-stream/commit/a174d50932b2ee4682f4bd6edb3eaa9a7d579bfc))
|
|
13
16
|
## [1.12.3] - 2025-02-08
|
|
14
17
|
- fix: infinite rerender issue ([54a6a84](https://github.com/deeeed/expo-audio-stream/commit/54a6a8414688c9fbf897c56503c0091dcaf55e26))
|
|
15
18
|
## [1.12.1] - 2025-02-01
|
|
@@ -104,7 +107,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
104
107
|
- Feature: Audio features extraction during recording.
|
|
105
108
|
- Feature: Consistent WAV PCM recording format across all platforms.
|
|
106
109
|
|
|
107
|
-
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.13.
|
|
110
|
+
[unreleased]: https://github.com/deeeed/expo-audio-stream/compare/@siteed/expo-audio-stream@1.13.1...HEAD
|
|
111
|
+
[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
|
|
108
112
|
[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
|
|
109
113
|
[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
|
|
110
114
|
[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
|
package/README.md
CHANGED
|
@@ -5,30 +5,32 @@
|
|
|
5
5
|
[](https://www.npmjs.com/package/@siteed/expo-audio-stream)
|
|
6
6
|
[](https://www.npmjs.com/package/@siteed/expo-audio-stream)
|
|
7
7
|
|
|
8
|
-
|
|
9
8
|
<div align="center">
|
|
10
|
-
<
|
|
11
|
-
<
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
<
|
|
16
|
-
<
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
<
|
|
20
|
-
<
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
<p align="center">
|
|
10
|
+
<strong>Comprehensive library designed to facilitate real-time audio processing and streaming across iOS, Android, and web platforms, with support for dual-stream recording and audio compression.</strong>
|
|
11
|
+
</p>
|
|
12
|
+
|
|
13
|
+
<div style="display: flex; justify-content: center; gap: 20px; margin: 30px 0;">
|
|
14
|
+
<div>
|
|
15
|
+
<h3>iOS Demo</h3>
|
|
16
|
+
<img src="../../docs/ios.gif" alt="iOS Demo" width="280" />
|
|
17
|
+
</div>
|
|
18
|
+
<div>
|
|
19
|
+
<h3>Android Demo</h3>
|
|
20
|
+
<img src="../../docs/android.gif" alt="Android Demo" width="280" />
|
|
21
|
+
</div>
|
|
22
|
+
</div>
|
|
23
|
+
|
|
24
|
+
<a href="https://deeeed.github.io/expo-audio-stream/playground" style="text-decoration:none;">
|
|
25
|
+
<div style="display:inline-block; padding:10px 20px; background-color:#007bff; color:white; border-radius:5px; font-size:16px;">
|
|
26
|
+
Try it in the Playground
|
|
27
|
+
</div>
|
|
28
|
+
</a>
|
|
26
29
|
</div>
|
|
27
30
|
|
|
28
31
|
**Give it a GitHub star 🌟, if you found this repo useful.**
|
|
29
32
|
[](https://github.com/deeeed/expo-audio-stream)
|
|
30
33
|
|
|
31
|
-
|
|
32
34
|
## Features
|
|
33
35
|
|
|
34
36
|
- Real-time audio streaming across iOS, Android, and web.
|