tiny fix for the audio bot #1

Merged
Elijah merged 2 commits from spy/AudioBot:master into master 2024-07-30 17:07:31 -04:00
2 changed files with 2 additions and 2 deletions

View file

@ -15,7 +15,7 @@
"typescript": "^5.3.3"
},
"dependencies": {
"@discordjs/opus": "^0.9.0",
"opusscript": "^0.1.1",
"@discordjs/voice": "^0.16.1",
"discord.js": "^14.14.1",
"libsodium-wrappers": "^0.7.13",

View file

@ -111,7 +111,7 @@ main();
function audioStream() {
if (!audioprc) return;
stream = new MemoryStream();
audioprc.stdout.pipe(stream);
audioprc.stdout.pipe(stream as unknown as NodeJS.WritableStream);
player.play(createAudioResource(stream, {
inputType: StreamType.Raw,
inlineVolume: false