我的音乐命令是否暂停/恢复,类似于我的代码?

问题描述

您好,我正在处理音乐命令。我已经有一个“播放”,“跳过”和“停止”命令,但是我想这样做,所以我可以有一个暂停和恢复命令。任何想法如何做到这一点? 任何形式的帮助将不胜感激

我对编码还是很陌生,所以请在逐步帮助我 这是我的代码

const ytdl = require("ytdl-core");
const yts = require("yt-search");
bot.on("message",async message => {
    if (message.author.bot) return;
    if (!message.content.startsWith(PREFIX)) return;
    if (message.channel.type === 'dm') {
        return message.reply('I can\'t execute that command inside DMs!');
    }

    const serverQueue = queue.get(message.guild.id);

    if (message.content.startsWith(`${PREFIX}plays`)) {
        execute(message,serverQueue).catch((_err) =>{
            message.channel.send('I was not able to fulfill your request')
        })
        return;
    } else if (message.content.startsWith(`${PREFIX}skips`)) {
        skip(message,serverQueue);
        return;
    } else if (message.content.startsWith(`${PREFIX}stops`)) {
        stop(message,serverQueue);
        return;
    } 
});

async function execute(message,serverQueue) {
    const args = message.content.split(" ");

    const voiceChannel = message.member.voice.channel;
    if (!voiceChannel)
        return message.channel.send(
            "You need to be in a voice channel to play music!"
        );
    
    let song;
    if (ytdl.validateURL(args[1])) {
        const songInfo = await ytdl.getInfo(args[1]);
        song = {
            title: songInfo.title,url: songInfo.video_url
        };
    } else {
        const { videos } = await yts(args.slice(1).join(" "));
        if (!videos.length) return message.channel.send("No songs were found!");
        song = {
            title: videos[0].title,url: videos[0].url
        };
    }

    if (!serverQueue) {
        const queueContruct = {
            textChannel: message.channel,voiceChannel: voiceChannel,connection: null,songs: [],volume: 5,playing: true
        };

        queue.set(message.guild.id,queueContruct);

        queueContruct.songs.push(song);

        try {
            var connection = await voiceChannel.join();
            queueContruct.connection = connection;
            play(message.guild,queueContruct.songs[0]);
        } catch (err) {
            console.log(err);
            queue.delete(message.guild.id);
            return message.channel.send(err);
        }
    } else {
        serverQueue.songs.push(song);
        return message.channel.send(`${song.title} has been added to the queue!`);
    }
}

function skip(message,serverQueue) {
    if (!message.member.voice.channel)
        return message.channel.send(
            "You have to be in a voice channel to stop the music!"
        );
    if (!serverQueue)
        return message.channel.send("There is no song that I Could skip!");
    serverQueue.connection.dispatcher.end();
}

function stop(message,serverQueue) {
    if (!message.member.voice.channel)
        return message.channel.send(
            "You have to be in a voice channel to stop the music!"
        );
    serverQueue.songs = [];
    serverQueue.connection.dispatcher.end();
    message.channel.send('Succesfully stopped all songs')
}

function play(guild,song) {
    const serverQueue = queue.get(guild.id);
    if (!song) {
        serverQueue.voiceChannel.leave();
        queue.delete(guild.id);
        return;
    }

    const dispatcher = serverQueue.connection
        .play(ytdl(song.url))
        .on("finish",() => {
            serverQueue.songs.shift();
            play(guild,serverQueue.songs[0]);
        })
        .on("error",error => console.error(error));
    dispatcher.setVolumeLogarithmic(serverQueue.volume / 5);
    serverQueue.textChannel.send(`Started playing: **${song.title}**`);
}



bot.on('message',message => {
    if (!message.content.startsWith(PREFIX) || message.author.bot) return;

    const args = message.content.slice(PREFIX.length).split(/ +/);
    const command = args.shift().toLowerCase;

});

async function execute(message,serverQueue) {
    const args = message.content.split(" ");

    const voiceChannel = message.member.voice.channel;
    if (!voiceChannel)
        return message.channel.send(
            "You need to be in a voice channel to play music!"
        );
    const permissions = voiceChannel.permissionsFor(message.bot.user);
    if (!permissions.has("CONNECT") || !permissions.has("SPEAK")) {
        return message.channel.send(
            "I need the permissions to join and speak in your voice channel!"
        );
    }
    let song;
    if (ytdl.validateURL(args[1])) {
        const songInfo = await ytdl.getInfo(args[1]);
        song = {
            title: songInfo.title,serverQueue) {
    if (!message.member.voice.channel)
        return message.channel.send(
            "You have to be in a voice channel to stop the music!"
        );
    serverQueue.songs = [];
    serverQueue.connection.dispatcher.end();
}

function play(guild,error => console.error(error));
    dispatcher.setVolumeLogarithmic(serverQueue.volume / 5);
    serverQueue.textChannel.send(`Start playing: **${song.title}**`);
}

在此先谢谢你

解决方法

您将必须像这样制作Dispatcher:

let dispatcher = connection.play(song)

和暂停功能中的

dispatcher.pause()

还有简历

dispatcher.resume()

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...