1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
/**************************************************************************
*
* DLAP Bot: A Discord bot that plays local audio tracks.
* (C) Copyright 2022
* Programmed by Andrew Lee
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
***************************************************************************/
import { createAudioResource } from '@discordjs/voice';
import { parseFile } from 'music-metadata';
import { readdirSync, readFileSync, writeFile } from 'node:fs';
import { EmbedBuilder } from 'discord.js';
import { player } from './VoiceInitialization.js';
import { audioState, files } from './AudioControl.js';
import { integer } from '../commands/play.js';
const { statusChannel, txtFile } = JSON.parse(readFileSync('./config.json', 'utf-8'));
let fileData;
export let audio;
export let duration;
export let metadataEmpty = false;
export let audioTitle;
export let audioArtist;
export let audioYear;
export let audioAlbum;
export let currentTrack;
const inputFiles = readdirSync('music');
export async function playAudio(bot) {
const resource = createAudioResource('music/' + audio);
player.play(resource);
console.log('Now playing: ' + audio);
audioState(0);
const audioFile = audio;
try {
const { common, format } = await parseFile('music/' + audio);
metadataEmpty = false;
if (common.title && common.artist && common.year && common.album) {
audioTitle = common.title;
audioArtist = common.artist;
audioYear = common.year;
audioAlbum = common.album;
} else {
metadataEmpty = true;
}
const toHHMMSS = (numSecs) => {
const secNum = parseInt(numSecs, 10);
const hours = Math.floor(secNum / 3600).toString().padStart(2, '0');
const minutes = Math.floor((secNum - (hours * 3600)) / 60).toString().padStart(2, '0');
const seconds = secNum - (hours * 3600) - (minutes * 60).toString().padStart(2, '0');
return `${hours}:${minutes}:${seconds}`;
};
duration = toHHMMSS(format.duration);
} catch (e) {
console.error(e);
}
audio = audio.split('.').slice(0, -1).join('.');
if (txtFile === true) {
fileData = 'Now Playing: ' + audio;
writeFile('./now-playing.txt', fileData, (err) => {
if (err) { console.log(err); }
});
}
const statusEmbed = new EmbedBuilder();
if (metadataEmpty === true) {
statusEmbed.setTitle('Now Playing');
statusEmbed.addFields(
{ name: 'Title', value: audio },
{ name: 'Duration', value: duration }
);
statusEmbed.setColor('#0066ff');
} else {
statusEmbed.setTitle('Now Playing');
statusEmbed.addFields(
{ name: 'Title', value: audioTitle, inline: true },
{ name: 'Artist', value: audioArtist, inline: true },
{ name: 'Year', value: `${audioYear}` },
{ name: 'Duration', value: duration }
);
statusEmbed.setFooter({ text: `Album: ${audioAlbum}\nFilename: ${audioFile}` });
statusEmbed.setColor('#0066ff');
}
const channel = bot.channels.cache.get(statusChannel);
if (!channel) return console.error('The status channel does not exist! Skipping.');
return await channel.send({ embeds: [statusEmbed] });
}
export function updatePlaylist(i) {
switch (i) {
case 'next':
currentTrack++;
audio = files[currentTrack];
break;
case 'back':
currentTrack--;
audio = files[currentTrack];
break;
case 'reset':
currentTrack = 0;
audio = files[currentTrack];
break;
case 'input':
audio = inputFiles[integer];
break;
case 'stop':
audio = 'Not Playing';
break;
}
}
|