85 lines
2.5 KiB
JavaScript
85 lines
2.5 KiB
JavaScript
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
}) : x)(function(x) {
|
|
if (typeof require !== "undefined")
|
|
return require.apply(this, arguments);
|
|
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
});
|
|
|
|
// node_modules/tsup/assets/esm_shims.js
|
|
import { fileURLToPath } from "url";
|
|
import path from "path";
|
|
var getFilename = () => fileURLToPath(import.meta.url);
|
|
var getDirname = () => path.dirname(getFilename());
|
|
var __dirname = /* @__PURE__ */ getDirname();
|
|
|
|
// src/stuff/error.ts
|
|
function ERROR() {
|
|
console.log(" ");
|
|
console.log(" ______ _____ _____ ____ _____ \r\n | ____| __ \\| __ \\ / __ \\| __ \\ \r\n | |__ | |__) | |__) | | | | |__) |\r\n | __| | _ /| _ /| | | | _ / \r\n | |____| | \\ \\| | \\ \\| |__| | | \\ \\ \r\n |______|_| \\_\\_| \\_\\\\____/|_| \\_\\");
|
|
console.log(" ");
|
|
console.log("This error comes from the discord-audio-stream package!");
|
|
console.log("This error happens if you don't use the package right.");
|
|
console.log(" ");
|
|
console.log("See the docs or open a issue post on github.");
|
|
console.log(" ");
|
|
}
|
|
|
|
// src/functions/start.ts
|
|
var { joinVoiceChannel, createAudioPlayer, createAudioResource } = __require("@discordjs/voice");
|
|
var { join } = __require("node:path");
|
|
function StreamStart({
|
|
imvci,
|
|
igi,
|
|
igv,
|
|
type,
|
|
StreamFile,
|
|
StreamLink
|
|
}) {
|
|
try {
|
|
const AudioPlayer = createAudioPlayer();
|
|
if (type === "File") {
|
|
let Audio = createAudioResource(StreamLink);
|
|
AudioPlayer.play(Audio);
|
|
joinVoiceChannel({
|
|
channelId: imvci,
|
|
guildId: igi,
|
|
adapterCreator: igv
|
|
}).subscribe(AudioPlayer);
|
|
} else if (type === "Link") {
|
|
const Audio = createAudioResource(join(__dirname, StreamFile));
|
|
AudioPlayer.play(Audio);
|
|
joinVoiceChannel({
|
|
channelId: imvci,
|
|
guildId: igi,
|
|
adapterCreator: igv
|
|
}).subscribe(AudioPlayer);
|
|
} else {
|
|
ERROR();
|
|
}
|
|
} catch (error) {
|
|
ERROR();
|
|
console.log("ERR:\n" + error);
|
|
console.log(" ");
|
|
}
|
|
}
|
|
|
|
// src/functions/stop.ts
|
|
var { getVoiceConnection } = __require("@discordjs/voice");
|
|
function StreamStop({
|
|
igi
|
|
}) {
|
|
try {
|
|
const connection = getVoiceConnection(igi);
|
|
connection.disconnect();
|
|
} catch (error) {
|
|
ERROR();
|
|
console.log("ERR:\n" + error);
|
|
console.log(" ");
|
|
}
|
|
}
|
|
export {
|
|
StreamStart,
|
|
StreamStop
|
|
};
|