speechflow 0.9.3 → 0.9.4
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 +10 -2
- package/etc/nps.yaml +4 -4
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -15,8 +15,16 @@ About
|
|
|
15
15
|
-----
|
|
16
16
|
|
|
17
17
|
**SpeechFlow** is a command-line interface based tool for establishing a
|
|
18
|
-
directed data flow graph of audio and text processing nodes. This way
|
|
19
|
-
allows to perform various speech processing tasks in a flexible way.
|
|
18
|
+
directed data flow graph of audio and text processing nodes. This way,
|
|
19
|
+
it allows to perform various speech processing tasks in a flexible way.
|
|
20
|
+
Currently, **SpeechFlow** comes with graph nodes for local file I/O, local audio
|
|
21
|
+
device I/O, local/remote WebSocket network I/O, cloud-based [Deepgram](https://deepgram.com)
|
|
22
|
+
speech-to-text conversion, cloud-based [DeepL](https://deepl.com) text-to-text
|
|
23
|
+
translation, local [Gemma/Ollama](https://ollama.com/library/gemma3)
|
|
24
|
+
text-to-text translation, cloud-based [ElevenLabs](https://elevenlabs.io/)
|
|
25
|
+
text-to-speech conversion, and local [FFmpeg](https://ffmpeg.org/)
|
|
26
|
+
speech-to-speech encoding. **SpeechFlow** is written in TypeScript and
|
|
27
|
+
ships as a package for the Node Package Manager (NPM).
|
|
20
28
|
|
|
21
29
|
Installation
|
|
22
30
|
------------
|
package/etc/nps.yaml
CHANGED
|
@@ -8,9 +8,9 @@ scripts:
|
|
|
8
8
|
# multiview-style development dashboard
|
|
9
9
|
dev: >
|
|
10
10
|
stmux -w always -m beep -e "built.in.+ms" --
|
|
11
|
-
[ -s
|
|
12
|
-
-s
|
|
13
|
-
-s
|
|
11
|
+
[ -s 35% "npm start lint-watch" :
|
|
12
|
+
-s 15% "npm start build-watch" :
|
|
13
|
+
-s 30% "npm start server-delay server-watch" ]
|
|
14
14
|
|
|
15
15
|
# static code analysis (linting)
|
|
16
16
|
lint-watch: nodemon --exec "npm start lint" --watch src --ext ts
|
|
@@ -32,7 +32,7 @@ scripts:
|
|
|
32
32
|
server: node dst/speechflow.js -v info -c sample@sample.yaml
|
|
33
33
|
server-watch: >
|
|
34
34
|
cross-env NODE_OPTIONS="--enable-source-maps"
|
|
35
|
-
nodemon --exec "npm start server" --watch
|
|
35
|
+
nodemon --exec "npm start server" --watch dst --ext ts --delay 1.0
|
|
36
36
|
|
|
37
37
|
# cleanup filesystem
|
|
38
38
|
clean: rimraf dst
|
package/package.json
CHANGED