permanent-waves/discordeno-audio-plugin
Lexie Love 50e3c4ed21 update discordeno-audio-plugin, add playlist ability 2023-03-22 23:34:42 -05:00
..
src update discordeno-audio-plugin, add playlist ability 2023-03-22 23:34:42 -05:00
utils update discordeno-audio-plugin, add playlist ability 2023-03-22 23:34:42 -05:00
.gitignore Update discordeno-audio-plugin, fix a bug where the web socket was dropping (#1) 2023-01-11 15:32:17 -06:00
LICENSE Update discordeno-audio-plugin, fix a bug where the web socket was dropping (#1) 2023-01-11 15:32:17 -06:00
README.md Update discordeno-audio-plugin, fix a bug where the web socket was dropping (#1) 2023-01-11 15:32:17 -06:00
deps.ts update discordeno-audio-plugin, add playlist ability 2023-03-22 23:34:42 -05:00
mod.ts Update discordeno-audio-plugin, fix a bug where the web socket was dropping (#1) 2023-01-11 15:32:17 -06:00

README.md

Discordeno Audio Plugin

This plugin enables your bot to send and receive audio. Play either local files or stream straight from YouTube using ytdl-core. Or create your own audio sources!

No external plugins like FFMPEG required!

IMPORTANT: The --unstable flag is required as the unstable datagram implementation is used.

Enable Audio usage

Enabling the plugin is similar to the cache plugin.

After that just connect to a channel and play your songs!

import { enableAudioPlugin } from "https://deno.land/x/discordeno_audio_plugin/mod.ts";

const baseBot = createBot({}); // Create your bot
const bot = enableAudioPlugin(baseBot); // Enable the plugin
await startBot(bot);

// Connect to a channel like normal
bot.helpers.connectToVoiceChannel(
  "your-guildid",
  "channel-id"
);

// Play music :)
const player = bot.helpers.getPlayer("your-guildid");
player.pushQuery("Obi-Wan - Hello there.");

Playing sound

Sound can be enqueued using the helper functions that have been added by enableAudioPlugin. Sounds are managed using a QueuePlayer, allowing for multiple to be queued, shuffled, etc.

const player = bot.helpers.getPlayer("your-guildid");

// Pushes a song to the end of the queue
// In this case it will stream directly from youtube
player.pushQuery("Obi-Wan - Hello there.");

// Local files have to be raw pcm files with data in the following format:
// 2 channel, 16bit Little Endian @48kHz
player.pushQuery("./hello/world.pcm"); 

// Interrupts the current sound, resumes when done
player.interruptQuery("rEq1Z0bjdwc"); 

Playing your own source

Given that you have an audio source in the correct format you can play from any source that you want.

IMPORTANT: The data needs to be Opus encoded 2 channel 16bit Little Endian @48kHz. You can use encodePCMAudio to encode PCM as Opus.

// Create and play your own source!
const source = createAudioSource("Title", () => AsyncIterableIterator<Uint8Array>)
player.push(source); 

Or pass in your own loadSource function when enabling the plugin:

const loadSource = (query: string) => {
  return createAudioSource("Title", () => AsyncIterableIterator<Uint8Array>);
}
const bot = enableAudioPlugin(baseBot, loadSource);
player.pushQuery("Query to pass to loadSource");

Listening

While receiving audio is not officially supported by Discord, it does work for now.

// Audio received is not a single stream!
// Each user is received separately
// Decoded audio is again 2 channel 16bit LE 48kHz pcm data
for await (const { user, decoded } from bot.helpers.onAudio("guildId")) {
  ...
}

// You can also filter out one or more users
for await (const { decoded } from bot.helpers.onAudio("guildId", "userid")) {
  ...
}