discord.js
&で音楽ボットを作成しようとしていますytdl-core
。というコマンドを使用して、現在のタイムスタンプを表示したいと考えています!nowplaying
。とはいえ、どのように時間を取ればいいのかわかりません。私のコード:
//bot.queue is a collection, and contains some attributes, like songs (array) and connection (ytdl)
let queue = bot.queue.get(message.guild.id);
const time = queue.connection.streamTime; //Doesn't work!
//Convert time here, then output
message.channel.send(`Now Playing - ${queue.songs[0].title} - ${time}`);
queue.connection.streamTime
、および他の方法を使用してみましたが、うまくいきませんでした