fix: handle missing ffmpeg on windows and add devices alias

This commit is contained in:
2026-04-30 02:57:49 +09:00
parent 24aa58fc42
commit 5d636e8619
5 changed files with 76 additions and 24 deletions

View File

@@ -8,6 +8,7 @@
"start": "bun src/index.ts discord",
"start:discord": "bun src/index.ts discord",
"start:local": "bun src/index.ts local",
"devices": "bun src/index.ts local-devices",
"audio:devices": "bun src/index.ts local-devices",
"check": "tsc --noEmit",
"build": "tsc -p tsconfig.json"
@@ -32,6 +33,7 @@
"typescript": "^6.0.3"
},
"trustedDependencies": [
"onnxruntime-node"
"onnxruntime-node",
"ffmpeg-static"
]
}