You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
const{ Bot }=require('@nesorter/discord-stream-lib');Bot({// bot token, yeahBOT_TOKEN: 'secret',// custom name for botBOT_SELF_RENAME_TO_NAME: 'restream',// id of voice chat where bot streams musicVOICE_CHAT_ID: '529772279727652864',// url to your web-radioSTREAM_MOUNTPOINT: 'http://kugi.club:3002/listen',// custom idv3 tags injecting to discord bot profileonTrackMetadataRequested: async()=>{// here you can call external api, ex:// const data = await axios('http://radio.com/api/current');return{artist: 'Artist 2',title: 'Title 2',};},}).then(({ client, audioPlayer, audioResource })=>{// this callback will be called when init done// here you can control bot and audio by yourself (if you need), so:// client - https://old.discordjs.dev/#/docs/discord.js/main/class/Client// audioPlayer - https://discord.js.org/docs/packages/voice/main/AudioPlayer:Class// audioResource - https://discord.js.org/docs/packages/voice/main/AudioResource:Class});