Player plays fine using string but not via createReadStream

No error is thrown either. Report:
Core Dependencies
- @discordjs/voice: 0.18.0
- prism-media: 1.3.5

Opus Libraries
- @discordjs/opus: 0.10.0
- opusscript: not found

Encryption Libraries
- sodium-native: not found
- sodium: not found
- libsodium-wrappers: 0.7.15
- @stablelib/xchacha20poly1305: not found
- @noble/ciphers: not found

FFmpeg
- version: N-93090-g7cab5471b2
- libopus: yes
--------------------------------------------------
Core Dependencies
- @discordjs/voice: 0.18.0
- prism-media: 1.3.5

Opus Libraries
- @discordjs/opus: 0.10.0
- opusscript: not found

Encryption Libraries
- sodium-native: not found
- sodium: not found
- libsodium-wrappers: 0.7.15
- @stablelib/xchacha20poly1305: not found
- @noble/ciphers: not found

FFmpeg
- version: N-93090-g7cab5471b2
- libopus: yes
--------------------------------------------------
code:
const jeffStream = () => {
return createAudioResource(
createReadStream(ASSETS_REPO.jeffSinging),
{
inputType: StreamType.OggOpus,
}
);
}

const connection = joinVoiceChannel({
channelId: jeffChannel.id,
guildId: jeffChannel.guild.id,
adapterCreator: jeffChannel.guild.voiceAdapterCreator,
});

const player = createAudioPlayer();
connection.subscribe(player);
player.play(jeffStream());
const jeffStream = () => {
return createAudioResource(
createReadStream(ASSETS_REPO.jeffSinging),
{
inputType: StreamType.OggOpus,
}
);
}

const connection = joinVoiceChannel({
channelId: jeffChannel.id,
guildId: jeffChannel.guild.id,
adapterCreator: jeffChannel.guild.voiceAdapterCreator,
});

const player = createAudioPlayer();
connection.subscribe(player);
player.play(jeffStream());
2 Replies
d.js toolkit
d.js toolkit2mo ago
- What are your intents? GuildVoiceStates is required to receive voice data! - Show what dependencies you are using -- generateDependencyReport() is exported from @discordjs/voice. - Try looking at common examples: https://github.com/discordjs/voice-examples. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button! - Marked as resolved by OP
The Grinch
The GrinchOP2mo ago
it seems to be StreamType.OggOpus is causing the issue but I'm not sure why a resource that will be played repeatedly, it's a path It seems that after running the bot for a while, the playback starts to lag a whole lot and I'm trying to figure out why is that the case Saw in the docs that if a resource is meant to be played repeatedly, it gotta be converted to Ogg and used via createReadStream Only if I remove But then it would get sent into ffmpeg Unless I'm mistaken? Without createReadStream? Ooh I guess that's the reason, I converted it in audacity So probably not with opus

Did you find this page helpful?