【问题标题】:Discord.js Playing Sound file but no sound is coming outDiscord.js 播放声音文件但没有声音出来
【发布时间】:2022-01-20 12:52:46
【问题描述】:
const Discord = require("discord.js");
require('dotenv').config();
const { joinVoiceChannel, createAudioPlayer, createAudioResource, AudioPlayerStatus } = require('@discordjs/voice');

const client = new Discord.Client({ intents: ["GUILDS", "GUILD_MESSAGES"], partials: ["CHANNEL"] });

const player = createAudioPlayer();

var channelsToMonitor = ['902193996355485778'];

function joinChannel(channel) {
    const connection = joinVoiceChannel({
        channelId: channel.id,
        guildId: channel.guild.id,
        adapterCreator: channel.guild.voiceAdapterCreator,
    });
    return connection;
}

function playAudio(connection) {
    // Subscribe the connection to the audio player (will play audio on the voice connection)
    const resource = createAudioResource('./music/', 'alarm.mp3');
    resource.volume = 1;
    player.play(resource);

    connection.subscribe(player);

    player.on(AudioPlayerStatus.Playing, () => {
        console.log('ALRM');
    });
}

client.on('ready', () => {
    console.log('ready');
})

client.on('messageCreate', async msg => {
    try {
        if (channelsToMonitor.indexOf(msg.channel.id) !== -1) {
            if (msg.content == 'GOGOGO') {
                const guild = client.guilds.cache.get("857332849119723520");
                const channel = guild.channels.cache.get("921415774676058152");
                if (!channel) return console.error("The channel does not exist!");
                var connection = joinChannel(channel);
                await playAudio(connection);
            }
        } else {
            if (msg.author.bot) return;
        }
    } catch (err) {
        console.error(err.message);
    }
});


client.login(process.env.DISCORD_TOKEN_2);

我已经从docs 设置了这个

而且我找不到为什么没有声音出来!当我使用console.log(player) 时,机器人加入频道并说它正在播放,但由于某种原因,它被聋了并且不播放任何声音。

【问题讨论】:

  • 机器人是在你身边,还是在机器人身边?
  • 从机器人方面@MrMythical

标签: javascript node.js discord discord.js


【解决方案1】:

机器人现在默认加入自聋。提供 selfDeaf 字段以停止此操作:

const connection = joinVoiceChannel({
    channelId: channel.id,
    guildId: channel.guild.id,
    adapterCreator: channel.guild.voiceAdapterCreator,
    selfDeaf: false,
    selfMute: false // this may also be needed
})

【讨论】:

    猜你喜欢
    • 2021-12-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多