opuslib 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/package.json +12 -2
package/README.md
CHANGED
|
@@ -20,9 +20,9 @@ Created as I had a need for real-time voice communication in a React Native app.
|
|
|
20
20
|
- **Low Latency** - Real-time encoding with minimal overhead
|
|
21
21
|
- **Native Performance** - Direct C/C++ integration, no JavaScript encoding
|
|
22
22
|
- **High Quality** - 24kbps achieves excellent speech quality
|
|
23
|
-
- **Cross-Platform** - iOS and Android with consistent API
|
|
23
|
+
- **Cross-Platform** - iOS and Android with a consistent API
|
|
24
24
|
- **Zero Dependencies** - Self-contained with vendored Opus source
|
|
25
|
-
-
|
|
25
|
+
- **Configurable** - Bitrate, sample rate, frame size
|
|
26
26
|
- **Event-Based** - Stream encoded audio chunks via events
|
|
27
27
|
|
|
28
28
|
### Why Opus 1.6?
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opuslib",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"description": "Opuslib wrapper",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -18,8 +18,18 @@
|
|
|
18
18
|
"keywords": [
|
|
19
19
|
"react-native",
|
|
20
20
|
"expo",
|
|
21
|
+
"opus",
|
|
21
22
|
"opuslib",
|
|
22
|
-
"Opuslib"
|
|
23
|
+
"Opuslib",
|
|
24
|
+
"libopus",
|
|
25
|
+
"Libopus",
|
|
26
|
+
"audio",
|
|
27
|
+
"voice",
|
|
28
|
+
"speech",
|
|
29
|
+
"streaming",
|
|
30
|
+
"encoding",
|
|
31
|
+
"opus-codec",
|
|
32
|
+
"Opus Codec"
|
|
23
33
|
],
|
|
24
34
|
"repository": "https://github.com/Scdales/opuslib",
|
|
25
35
|
"bugs": {
|