fix(voice): disable OGG CRC to avoid node-crc native build failure

- prism-media@2.0.0-alpha.0 OggLogicalBitstream requires node-crc
- node-crc is Rust native addon that fails to build (MSRV compat)
- Setting crc: false makes prism-media skip require('node-crc')
- OGG streams work correctly without CRC checksums
- node-crc kept in package.json

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-06-08 19:57:33 +07:00
co-authored by Claude Opus 4.8
parent 306ccf58f0
commit 0e79ba0d50
3 changed files with 3 additions and 1 deletions
+1
View File
@@ -27,6 +27,7 @@
"ioredis": "^5.11.0",
"libsodium-wrappers": "^0.8.4",
"lru-cache": "^11.5.1",
"node-crc": "^4.0.0",
"openai": "^6.38.0",
"opusscript": "^0.0.8",
"p-limit": "^7.3.0",
@@ -40,7 +40,7 @@ export class SegmentManager {
const oggStream = new prism.opus.OggLogicalBitstream({
opusHead: new prism.opus.OpusHead({ channelCount: 2, sampleRate: 48000 }),
pageSizeControl: { maxPackets: 10 },
crc: true,
crc: false,
});
const out = fs.createWriteStream(filename);
oggPacketStream.pipe(oggStream).pipe(out);