###前提・実現したい
Discord.jsの音楽でskip機能を追加したい
###発生している問題
なし
###ソースコード
const discord = require("discord.js"); const ytdl = require('ytdl-core'); const yt = require('yt-search'); const client = new discord.Client(); //音楽 client.on('message', async message => { if (message.content.startsWith("b.play")){ const channel = message.member.voice.channel if (!channel) return message.reply( {embed: { color: 0x0032cfc, description: 'エラー\nボイスチャンネルに接続して下さい' }} ); const connection = await channel.join() const msg = await message.channel.send( {embed: { color: 0x0032cfc, description: 'ボイスチャンネルに接続してます...' }} ); const AKB = message.content.split(" ").slice(1).join(" ") if (!AKB) return message.channel.send( {embed: { color: 0x0032cfc, title: 'エラー', description: '曲名を指定して下さい' }} ); const yts = require( 'yt-search' ) msg.edit( {embed: { color: 0x0032cfc, description: '検索中...' }} ); yts( AKB, function ( err, r ) { const videos = r.videos const playlists = r.playlists || r.lists const channels = r.channels || r.accounts msg.edit( {embed: { color: 0x0fc0303, description: '以下を再生します' }} ); const video = r.videos[0]; const stream = ytdl(ytdl.getURLVideoID(video.url), { filter: 'audioonly' }) const dispatcher = connection.play(stream) message.channel.send( {embed: { color: 0x0fc0303, description: `タイトル\n[${videos[ 0 ].title}](${videos[ 0 ].url})\n投稿者\n[${videos[ 0 ].author.name}](${videos[ 0 ].author.url})\n再生回数\n${videos[0].views}回\n再生時間\n${videos[ 0 ].duration}` }} ); })}}) //接続時に必要 client.login(process.env.TOKEN);
###試したこと
このサイトを参考にしましたが分かりませんでした。
あなたの回答
tips
プレビュー