muse/src/services/player.ts

447 lines
11 KiB
TypeScript
Raw Normal View History

import {VoiceConnection, VoiceChannel, StreamDispatcher} from 'discord.js';
2020-03-14 02:36:42 +01:00
import {promises as fs, createWriteStream} from 'fs';
2020-03-15 03:48:08 +01:00
import {Readable, PassThrough} from 'stream';
2020-03-14 02:36:42 +01:00
import path from 'path';
import hasha from 'hasha';
import ytdl from 'ytdl-core';
import {WriteStream} from 'fs-capacitor';
2020-03-15 03:48:08 +01:00
import ffmpeg from 'fluent-ffmpeg';
2020-03-21 02:47:04 +01:00
import shuffle from 'array-shuffle';
export interface QueuedPlaylist {
title: string;
source: string;
}
export interface QueuedSong {
title: string;
artist: string;
url: string;
length: number;
playlist: QueuedPlaylist | null;
isLive: boolean;
}
2020-03-13 04:41:26 +01:00
export enum STATUS {
PLAYING,
2020-03-17 23:59:26 +01:00
PAUSED
2020-03-13 04:41:26 +01:00
}
export default class {
2020-03-17 23:59:26 +01:00
public status = STATUS.PAUSED;
2020-03-17 02:14:15 +01:00
public voiceConnection: VoiceConnection | null = null;
2020-03-21 02:47:04 +01:00
private queue: QueuedSong[] = [];
private queuePosition = 0;
2020-03-14 02:36:42 +01:00
private readonly cacheDir: string;
private dispatcher: StreamDispatcher | null = null;
2020-03-18 01:42:28 +01:00
private nowPlaying: QueuedSong | null = null;
2020-03-16 01:30:07 +01:00
private playPositionInterval: NodeJS.Timeout | undefined;
2020-03-19 04:29:43 +01:00
private lastSongURL = '';
2020-03-13 04:41:26 +01:00
2020-03-15 21:35:34 +01:00
private positionInSeconds = 0;
2020-03-21 02:47:04 +01:00
constructor(cacheDir: string) {
2020-03-14 02:36:42 +01:00
this.cacheDir = cacheDir;
2020-03-13 04:41:26 +01:00
}
async connect(channel: VoiceChannel): Promise<void> {
2020-03-13 04:41:26 +01:00
const conn = await channel.join();
this.voiceConnection = conn;
2020-03-13 04:41:26 +01:00
}
2020-03-17 23:59:26 +01:00
disconnect(breakConnection = true): void {
if (this.voiceConnection) {
2020-03-16 01:30:07 +01:00
if (this.status === STATUS.PLAYING) {
this.pause();
}
2020-03-17 23:59:26 +01:00
if (breakConnection) {
this.voiceConnection.disconnect();
}
this.voiceConnection = null;
this.dispatcher = null;
2020-03-13 04:41:26 +01:00
}
}
async seek(positionSeconds: number): Promise<void> {
2020-03-17 23:59:26 +01:00
this.status = STATUS.PAUSED;
if (this.voiceConnection === null) {
2020-03-14 02:36:42 +01:00
throw new Error('Not connected to a voice channel.');
}
2020-03-21 02:47:04 +01:00
const currentSong = this.getCurrent();
2020-03-14 02:36:42 +01:00
if (!currentSong) {
throw new Error('No song currently playing');
}
2020-03-18 18:40:31 +01:00
if (positionSeconds > currentSong.length) {
throw new Error('Seek position is outside the range of the song.');
}
2020-03-18 23:15:45 +01:00
const stream = await this.getStream(currentSong.url, {seek: positionSeconds});
2020-10-24 19:11:29 +02:00
this.dispatcher = this.voiceConnection.play(stream, {type: 'webm/opus', bitrate: 'auto'});
2020-03-16 01:30:07 +01:00
this.attachListeners();
this.startTrackingPosition(positionSeconds);
2020-03-15 21:35:34 +01:00
2020-03-16 01:30:07 +01:00
this.status = STATUS.PLAYING;
2020-03-15 21:35:34 +01:00
}
async forwardSeek(positionSeconds: number): Promise<void> {
return this.seek(this.positionInSeconds + positionSeconds);
}
getPosition(): number {
return this.positionInSeconds;
2020-03-14 02:36:42 +01:00
}
async play(): Promise<void> {
if (this.voiceConnection === null) {
2020-03-13 04:41:26 +01:00
throw new Error('Not connected to a voice channel.');
}
2020-03-21 02:47:04 +01:00
const currentSong = this.getCurrent();
2020-03-17 23:59:26 +01:00
if (!currentSong) {
throw new Error('Queue empty.');
}
// Resume from paused state
2020-03-21 02:47:04 +01:00
if (this.status === STATUS.PAUSED && currentSong.url === this.nowPlaying?.url) {
2020-03-19 00:29:32 +01:00
if (this.dispatcher) {
this.dispatcher.resume();
this.status = STATUS.PLAYING;
2020-03-19 04:29:43 +01:00
this.startTrackingPosition();
2020-03-19 00:29:32 +01:00
return;
}
// Was disconnected, need to recreate stream
2020-03-24 01:40:54 +01:00
if (!currentSong.isLive) {
return this.seek(this.getPosition());
}
2020-03-13 04:41:26 +01:00
}
2020-03-21 02:47:04 +01:00
try {
const stream = await this.getStream(currentSong.url);
this.dispatcher = this.voiceConnection.play(stream, {type: 'webm/opus'});
2020-03-13 04:41:26 +01:00
2020-03-21 02:47:04 +01:00
this.attachListeners();
2020-03-13 04:41:26 +01:00
2020-03-21 02:47:04 +01:00
this.status = STATUS.PLAYING;
this.nowPlaying = currentSong;
2020-03-16 01:30:07 +01:00
2020-03-21 02:47:04 +01:00
if (currentSong.url === this.lastSongURL) {
this.startTrackingPosition();
} else {
// Reset position counter
this.startTrackingPosition(0);
this.lastSongURL = currentSong.url;
}
2020-10-24 18:32:43 +02:00
} catch (error: unknown) {
2020-03-21 02:47:04 +01:00
this.removeCurrent();
throw error;
2020-03-19 04:29:43 +01:00
}
2020-03-13 04:41:26 +01:00
}
pause(): void {
2020-03-16 01:30:07 +01:00
if (this.status !== STATUS.PLAYING) {
throw new Error('Not currently playing.');
}
2020-03-13 04:41:26 +01:00
2020-03-16 01:30:07 +01:00
this.status = STATUS.PAUSED;
if (this.dispatcher) {
this.dispatcher.pause();
}
this.stopTrackingPosition();
2020-03-13 04:41:26 +01:00
}
2021-04-23 18:30:31 +02:00
async forward(skip: number): Promise<void> {
this.manualForward(skip);
2020-03-21 02:47:04 +01:00
2020-03-24 01:40:54 +01:00
try {
if (this.getCurrent() && this.status !== STATUS.PAUSED) {
await this.play();
} else {
this.status = STATUS.PAUSED;
this.disconnect();
2020-03-21 02:47:04 +01:00
}
2020-10-24 18:32:43 +02:00
} catch (error: unknown) {
2020-03-24 01:40:54 +01:00
this.queuePosition--;
throw error;
}
}
2021-04-23 18:30:31 +02:00
manualForward(skip: number): void {
if ((this.queuePosition + skip - 1) < this.queue.length) {
this.queuePosition += skip;
this.positionInSeconds = 0;
this.stopTrackingPosition();
2020-03-21 02:47:04 +01:00
} else {
throw new Error('No songs in queue to forward to.');
}
}
async back(): Promise<void> {
if (this.queuePosition - 1 >= 0) {
this.queuePosition--;
this.positionInSeconds = 0;
this.stopTrackingPosition();
2020-03-21 02:47:04 +01:00
if (this.status !== STATUS.PAUSED) {
await this.play();
}
} else {
throw new Error('No songs in queue to go back to.');
}
}
getCurrent(): QueuedSong | null {
if (this.queue[this.queuePosition]) {
return this.queue[this.queuePosition];
}
return null;
}
getQueue(): QueuedSong[] {
return this.queue.slice(this.queuePosition + 1);
}
add(song: QueuedSong, {immediate = false} = {}): void {
if (song.playlist) {
// Add to end of queue
this.queue.push(song);
} else {
// Not from playlist, add immediately
let insertAt = this.queuePosition + 1;
if (!immediate) {
// Loop until playlist song
this.queue.some(song => {
if (song.playlist) {
return true;
}
insertAt++;
return false;
});
}
this.queue = [...this.queue.slice(0, insertAt), song, ...this.queue.slice(insertAt)];
}
}
shuffle(): void {
2020-03-25 23:59:09 +01:00
const shuffledSongs = shuffle(this.queue.slice(this.queuePosition + 1));
this.queue = [...this.queue.slice(0, this.queuePosition + 1), ...shuffledSongs];
2020-03-21 02:47:04 +01:00
}
clear(): void {
const newQueue = [];
// Don't clear curently playing song
const current = this.getCurrent();
if (current) {
newQueue.push(current);
}
this.queuePosition = 0;
this.queue = newQueue;
}
removeCurrent(): void {
this.queue = [...this.queue.slice(0, this.queuePosition), ...this.queue.slice(this.queuePosition + 1)];
}
queueSize(): number {
return this.getQueue().length;
}
isQueueEmpty(): boolean {
return this.queueSize() === 0;
2020-03-20 01:16:07 +01:00
}
2020-03-14 02:36:42 +01:00
private getCachedPath(url: string): string {
2020-03-15 21:13:12 +01:00
return path.join(this.cacheDir, hasha(url));
2020-03-14 02:36:42 +01:00
}
private getCachedPathTemp(url: string): string {
2020-03-17 18:30:27 +01:00
return path.join(this.cacheDir, 'tmp', hasha(url));
2020-03-14 02:36:42 +01:00
}
private async isCached(url: string): Promise<boolean> {
try {
await fs.access(this.getCachedPath(url));
return true;
2020-10-24 18:32:43 +02:00
} catch (_: unknown) {
2020-03-14 02:36:42 +01:00
return false;
}
}
2020-03-18 23:15:45 +01:00
private async getStream(url: string, options: {seek?: number} = {}): Promise<Readable> {
2020-03-14 02:36:42 +01:00
const cachedPath = this.getCachedPath(url);
2020-03-18 23:15:45 +01:00
let ffmpegInput = '';
const ffmpegInputOptions: string[] = [];
2020-03-18 23:15:45 +01:00
let shouldCacheVideo = false;
2020-03-28 00:28:50 +01:00
let format: ytdl.videoFormat | undefined;
2020-03-14 02:36:42 +01:00
if (await this.isCached(url)) {
2020-03-18 23:15:45 +01:00
ffmpegInput = cachedPath;
2020-03-28 00:28:50 +01:00
if (options.seek) {
ffmpegInputOptions.push('-ss', options.seek.toString());
}
2020-03-18 23:15:45 +01:00
} else {
// Not yet cached, must download
const info = await ytdl.getInfo(url);
2020-03-14 02:36:42 +01:00
2020-03-18 23:15:45 +01:00
const {formats} = info;
2020-03-14 02:36:42 +01:00
2020-03-18 23:15:45 +01:00
const filter = (format: ytdl.videoFormat): boolean => format.codecs === 'opus' && format.container === 'webm' && format.audioSampleRate !== undefined && parseInt(format.audioSampleRate, 10) === 48000;
2020-03-14 02:36:42 +01:00
2020-03-28 00:28:50 +01:00
format = formats.find(filter);
2020-03-14 02:36:42 +01:00
2020-03-18 23:15:45 +01:00
const nextBestFormat = (formats: ytdl.videoFormat[]): ytdl.videoFormat | undefined => {
2020-10-24 18:32:43 +02:00
if (formats[0].isLive) {
2020-03-25 23:59:09 +01:00
formats = formats.sort((a, b) => (b as unknown as {audioBitrate: number}).audioBitrate - (a as unknown as {audioBitrate: number}).audioBitrate); // Bad typings
2020-03-14 02:36:42 +01:00
2020-03-18 23:15:45 +01:00
return formats.find(format => [128, 127, 120, 96, 95, 94, 93].includes(parseInt(format.itag as unknown as string, 10))); // Bad typings
}
2020-03-15 03:48:08 +01:00
2020-03-18 23:15:45 +01:00
formats = formats
.filter(format => format.averageBitrate)
2020-10-24 18:32:43 +02:00
.sort((a, b) => {
if (a && b) {
return b.averageBitrate! - a.averageBitrate!;
}
return 0;
});
2020-03-18 23:15:45 +01:00
return formats.find(format => !format.bitrate) ?? formats[0];
};
if (!format) {
format = nextBestFormat(info.formats);
if (!format) {
// If still no format is found, throw
throw new Error('Can\'t find suitable format.');
}
2020-03-15 03:48:08 +01:00
}
2020-03-18 23:15:45 +01:00
ffmpegInput = format.url;
2020-03-14 02:36:42 +01:00
2020-03-18 23:15:45 +01:00
// Don't cache livestreams or long videos
const MAX_CACHE_LENGTH_SECONDS = 30 * 60; // 30 minutes
2020-08-24 21:53:18 +02:00
shouldCacheVideo = !info.player_response.videoDetails.isLiveContent && parseInt(info.videoDetails.lengthSeconds, 10) < MAX_CACHE_LENGTH_SECONDS && !options.seek;
2020-03-15 03:48:08 +01:00
2020-03-18 23:15:45 +01:00
ffmpegInputOptions.push(...[
'-reconnect',
'1',
'-reconnect_streamed',
'1',
'-reconnect_delay_max',
'5'
]);
2020-03-14 02:36:42 +01:00
2020-03-28 00:28:50 +01:00
if (options.seek) {
// Fudge seek position since FFMPEG doesn't do a great job
ffmpegInputOptions.push('-ss', (options.seek + 7).toString());
}
2020-03-14 02:36:42 +01:00
}
2020-03-18 23:15:45 +01:00
// Create stream and pipe to capacitor
return new Promise((resolve, reject) => {
const youtubeStream = ffmpeg(ffmpegInput)
.inputOptions(ffmpegInputOptions)
.noVideo()
.audioCodec('libopus')
.outputFormat('webm')
.on('error', error => {
console.error(error);
reject(error);
})
.pipe() as PassThrough;
const capacitor = new WriteStream();
youtubeStream.pipe(capacitor);
// Cache video if necessary
if (shouldCacheVideo) {
const cacheTempPath = this.getCachedPathTemp(url);
const cacheStream = createWriteStream(cacheTempPath);
cacheStream.on('finish', async () => {
2020-03-28 00:28:50 +01:00
// Only move if size is non-zero (may have errored out)
const stats = await fs.stat(cacheTempPath);
if (stats.size !== 0) {
await fs.rename(cacheTempPath, cachedPath);
}
});
2020-03-15 21:13:12 +01:00
capacitor.createReadStream().pipe(cacheStream);
}
2020-03-14 02:36:42 +01:00
resolve(capacitor.createReadStream());
});
2020-03-14 02:36:42 +01:00
}
2020-03-16 01:30:07 +01:00
private startTrackingPosition(initalPosition?: number): void {
2020-03-19 04:29:43 +01:00
if (initalPosition !== undefined) {
2020-03-16 01:30:07 +01:00
this.positionInSeconds = initalPosition;
}
2020-03-15 21:35:34 +01:00
2020-03-16 01:30:07 +01:00
if (this.playPositionInterval) {
clearInterval(this.playPositionInterval);
}
this.playPositionInterval = setInterval(() => {
this.positionInSeconds++;
}, 1000);
}
private stopTrackingPosition(): void {
if (this.playPositionInterval) {
clearInterval(this.playPositionInterval);
}
}
private attachListeners(): void {
if (!this.voiceConnection) {
return;
}
2020-03-21 02:47:04 +01:00
this.voiceConnection.on('disconnect', this.onVoiceConnectionDisconnect.bind(this));
2020-03-16 01:30:07 +01:00
if (!this.dispatcher) {
return;
}
2020-03-21 02:47:04 +01:00
this.dispatcher.on('speaking', this.onVoiceConnectionSpeaking.bind(this));
}
2020-03-19 04:29:43 +01:00
2020-03-21 02:47:04 +01:00
private onVoiceConnectionDisconnect(): void {
this.disconnect(false);
}
2020-03-19 04:29:43 +01:00
2020-03-21 02:47:04 +01:00
private async onVoiceConnectionSpeaking(isSpeaking: boolean): Promise<void> {
// Automatically advance queued song at end
if (!isSpeaking && this.status === STATUS.PLAYING) {
2021-04-23 18:30:31 +02:00
await this.forward(1);
2020-03-21 02:47:04 +01:00
}
}
2020-03-13 04:41:26 +01:00
}