Discord.net can't stream audio with NAudio
问题 I want to play an mp3 file in a voice channel. The BOT successfully can connect, but doesn't play anything, and throws an exception. Code public async Task SendAudioAsync(IGuild guild, IMessageChannel channel, string path) { try { if (!File.Exists(path)) { await channel.SendMessageAsync("File does not exist."); return; } IAudioClient client; if (ConnectedChannels.TryGetValue(guild.Id, out client)) { await Log.d($"Starting playback of {path} in {guild.Name}", src); using (var reader = new