speechflow 0.9.7 → 0.9.8

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
@@ -2,6 +2,11 @@
2
2
  ChangeLog
3
3
  =========
4
4
 
5
+ 0.9.8 (2025-07-12)
6
+ ------------------
7
+
8
+ - CLEANUP: provide start scripts and move config to sub-directory
9
+
5
10
  0.9.7 (2025-07-12)
6
11
  ------------------
7
12
 
package/README.md CHANGED
@@ -67,8 +67,7 @@ Processing Graph Examples
67
67
  -------------------------
68
68
 
69
69
  The following are examples of **SpeechFlow** processing graphs.
70
- They can also be found in the [sample.yaml](./sample.yaml) file
71
- for easy consumption with `speechflow -c <id>@sample.yaml>`.
70
+ They can also be found in the sample [speechflow.yaml](./etc/speechflow.yaml) file.
72
71
 
73
72
  - **Capturing**: Capture audio from microphone device into WAV audio file:
74
73
 
@@ -0,0 +1,6 @@
1
+ @echo off
2
+ title Speechflow
3
+ "c:\Program Files\nodejs\node.exe" ^
4
+ .\dst\speechflow.js ^
5
+ -v info ^
6
+ -c studio@.\etc\speechflow.yaml
@@ -0,0 +1,5 @@
1
+ #!/bin/sh
2
+ node \
3
+ ./dst/speechflow.js \
4
+ -v info \
5
+ -c studio@./etc/speechflow.yaml
package/etc/stx.conf CHANGED
@@ -48,7 +48,7 @@ server-delay
48
48
 
49
49
  # run program
50
50
  server
51
- node dst/speechflow.js -v info -c studio@sample.yaml
51
+ node dst/speechflow.js -v info -c studio@etc/speechflow.yaml
52
52
 
53
53
  # run program with file watching
54
54
  server-watch
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "speechflow",
3
- "version": "0.9.7",
4
- "x-stdver": "0.9.7-EA",
3
+ "version": "0.9.8",
4
+ "x-stdver": "0.9.8-EA",
5
5
  "x-release": "2025-07-12",
6
6
  "homepage": "https://github.com/rse/speechflow",
7
7
  "description": "Speech Processing Flow Graph",
File without changes