voicecc 1.0.7 → 1.0.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/README.md +0 -7
- package/package.json +1 -1
- package/scripts/postinstall.js +4 -0
package/README.md
CHANGED
|
@@ -39,10 +39,3 @@ The voice loop runs locally with zero external API calls except to Claude:
|
|
|
39
39
|
6. **Narration**: Claude's response stripped of markdown and split into sentences
|
|
40
40
|
7. **Text-to-speech**: Kokoro-82M via mlx-audio on Apple Silicon GPU (~8x realtime)
|
|
41
41
|
8. **Speaker playback**: Audio output through VPIO at 24kHz with echo cancellation
|
|
42
|
-
|
|
43
|
-
## Troubleshooting
|
|
44
|
-
|
|
45
|
-
- **"sox not found"**: Install sox with `brew install sox`
|
|
46
|
-
- **"espeak not installed"**: Install espeak-ng with `brew install espeak-ng`
|
|
47
|
-
- **tts-server.py not ready**: Ensure the Python venv is set up correctly
|
|
48
|
-
- **Mic permission denied**: Grant microphone permissions to your terminal or IDE
|
package/package.json
CHANGED
package/scripts/postinstall.js
CHANGED
|
@@ -63,6 +63,10 @@ function main() {
|
|
|
63
63
|
* Build the dashboard frontend via Vite.
|
|
64
64
|
*/
|
|
65
65
|
function buildDashboard() {
|
|
66
|
+
if (existsSync(join("dashboard", "dist", "index.html"))) {
|
|
67
|
+
console.log("Dashboard already built, skipping.");
|
|
68
|
+
return;
|
|
69
|
+
}
|
|
66
70
|
console.log("Building dashboard...");
|
|
67
71
|
try {
|
|
68
72
|
run("cd dashboard && npx vite build");
|