-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpus.ts
539 lines (460 loc) · 17.3 KB
/
Opus.ts
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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
import {ChildProcessWithoutNullStreams, spawn, spawnSync} from "node:child_process";
import {Transform, TransformOptions} from "node:stream";
import {Buffer} from "node:buffer";
import path from "node:path";
import {env} from "@env";
/**
* @author SNIPPIK
* @description Доступные библиотеки для включения
* @private
*/
const support_libs: Methods.supported = {
"opusscript": (lib) => ({ args: [48000, 2, 2049], encoder: lib }),
"mediaplex": (lib) => ({ args: [48000, 2], encoder: lib.OpusEncoder }),
"@evan/opus": (lib) => ({ args: [{ channels: 2, sample_rate: 48000 }], encoder: lib.Encoder })
};
/**
* @author SNIPPIK
* @description Здесь будет находиться найденная библиотека, если она конечно будет найдена
* @private
*/
const loaded_lib: Methods.current = {};
/**
* @author SNIPPIK
* @description Превращаем имя переменной в буфер
* @param name - Имя переменной
* @private
*/
const bufferCode = (name: string) => {
return Buffer.from([...`${name}`].map((x: string) => x.charCodeAt(0)));
};
/**
* @author SNIPPIK
* @description Доступный формат для отправки opus пакетов
* @private
*/
const bit = 960 * 2 * 2;
/**
* @author SNIPPIK
* @description Заголовки для поиска в chuck
* @private
*/
const OGG = {
"OGGs_HEAD": bufferCode("OggS"),
"OPUS_HEAD": bufferCode("OpusHead"),
"OPUS_TAGS": bufferCode("OpusTags")
};
/**
* @author SNIPPIK
* @description Конвертирует аудио в нужный формат
* @class AudioResource
* @public
*/
export class AudioResource {
/**
* @description Временное хранилище для потоков
* @readonly
* @private
*/
private readonly _streams: (Process | OpusEncoder)[] = [
new OpusEncoder({
highWaterMark: 5 * 1000 * 1000,
readableObjectMode: true
})
];
/**
* @description Данные для запуска процесса буферизации
* @readonly
* @private
*/
private readonly chunks = {
// Кол-во пакетов
length: 0,
// Размер пакета
size: 20
};
/**
* @description Можно ли читать поток
* @private
*/
private _readable = false;
/**
* @description Можно ли читать поток
* @default true - Всегда можно читать поток, если поток еще не был загружен то отправляем пустышки
* @return boolean
* @public
*/
public get readable() { return this._readable; };
/**
* @description Выдаем фрагмент потока или пустышку
* @return Buffer
* @public
*/
public get packet(): Buffer {
const packet = this.stream.read();
// Если есть аудио пакеты
if (packet) this.chunks.length++;
// Отправляем пакет
return packet;
};
/**
* @description Получаем время, время зависит от прослушанных пакетов
* @public
*/
public get duration() {
const duration = ((this.chunks.length * this.chunks.size) / 1e3).toFixed(0);
return parseInt(duration);
};
/**
* @description Получаем OpusEncoder
* @return OpusEncoder
* @public
*/
public get stream() { return this._streams.at(0) as OpusEncoder; };
/**
* @description Получаем Process
* @return Process
* @public
*/
public get process() { return this._streams.at(1) as Process; };
/**
* @description Подключаем поток к ffmpeg
* @param options - Параметры для запуска
* @private
*/
private set input(options: {input: NodeJS.ReadWriteStream | Process, event?: string, events: string[]}) {
// Подключаем события к потоку
for (const event of options.events) {
if (options.event) options.input[options.event].once(event, this.destroy);
else options.input["once"](event, this.destroy);
}
// Добавляем процесс в класс для отслеживания
if (options.input instanceof Process) this._streams.push(options.input);
else {
options.input.once("readable", () => { this._readable = true; });
this.process.stdout.pipe(options.input);
}
};
/**
* @description Создаем класс и задаем параметры
* @param options - Настройки кодировщика
* @public
*/
public constructor(options: {path: string, seek?: number; filters: string; chunk?: number}) {
if (options.chunk > 0) this.chunks.size = 20 * options.chunk;
if (options.seek > 0) this.chunks.length = (options.seek * 1e3) / this.chunks.size;
// Процесс
this.input = {
events: ["error"],
event: "stdout",
input: new Process([ "-vn", "-loglevel", "panic",
// Если это ссылка, то просим ffmpeg переподключиться при сбросе соединения
...(options.path.startsWith("http") ? ["-reconnect", "1", "-reconnect_at_eof", "1", "-reconnect_streamed", "1", "-reconnect_delay_max", "5"] : []),
"-ss", `${options.seek ?? 0}`, "-i", options.path,
// Подключаем фильтры
...(options.filters ? ["-af", options.filters] : []),
// Указываем формат аудио
"-f", `${OpusEncoder.lib.ffmpeg}`,
"pipe:1"
])
};
// Расшифровщик
this.input = {
input: this.stream,
events: ["end", "close", "error", "drain"]
};
};
/**
* @description Удаляем ненужные данные
* @public
*/
public destroy = () => {
// Удаляем поток после всех действий, даже если он будет включен заново он все равно будет удален
setImmediate(() => {
for (const stream of this._streams) {
if (stream instanceof Process) stream.destroy();
else {
stream.emit("close");
stream.destroy();
stream.end();
}
}
this._streams.splice(0, this._streams.length);
// Удаляем все параметры
for (let key of Object.keys(this)) this[key] = null;
});
this._readable = null;
};
}
/**
* @author SNIPPIK
* @description Делаем проверку на наличие FFmpeg/avconv
*/
(() => {
const cache = env.get("cache.dir");
const names = [`${cache}/FFmpeg/ffmpeg`, cache, env.get("ffmpeg.path")].map((file) => path.resolve(file).replace(/\\/g,'/'));
// Проверяем имена, если есть FFmpeg/avconv
for (const name of [...names, "ffmpeg", "avconv"]) {
try {
const result = spawnSync(name, ['-h'], {windowsHide: true});
if (result.error) continue;
return env.set("ffmpeg.path", name);
} catch {}
}
// Выдаем ошибку если нет FFmpeg/avconv
throw Error("[Critical]: FFmpeg/avconv not found!");
})();
/**
* @author SNIPPIK
* @description Для уничтожения использовать <class>.emit("close")
* @class Process
* @private
*/
export class Process {
/**
* @description Процесс запущенный через spawn
* @private
*/
private _process: ChildProcessWithoutNullStreams = null;
/**
* @description Получаем ChildProcessWithoutNullStreams
* @return ChildProcessWithoutNullStreams
* @public
*/
public get process() { return this._process; }
/**
* @description Зарезервирован для вывода данных, как правило (хотя и не обязательно)
* @return internal.Readable
* @public
*/
public get stdout() { return this?.process?.stdout; };
/**
* @description Задаем параметры и запускаем процесс
* @param args {string[]} Аргументы для запуска
* @param name {string} Имя процесса
*/
public constructor(args: string[], name: string = env.get("ffmpeg.path")) {
this._process = spawn(name, args, {shell: false});
["end", "close", "error", "disconnect", "exit"].forEach((event) => this.process.once(event, this.destroy));
};
/**
* @description Удаляем и отключаемся от процесса
* @private
*/
public destroy = () => {
if (this._process && !this.process?.killed) this.process?.kill();
this._process = null;
};
}
/**
* @author SNIPPIK
* @description Проверяем на наличие библиотек, если будет найдена библиотека то она будет использоваться
* @async
*/
(async () => {
const names = Object.keys(support_libs);
for (const name of names) {
try {
const library = require(name);
if (library?.ready) await library.ready;
Object.assign(loaded_lib, support_libs[name](library));
delete require.cache[require.resolve(name)];
return;
} catch {}
}
})();
/**
* @author SNIPPIK
* @description Создаем кодировщик в opus
* @class OpusEncoder
* @extends Transform
* @public
*/
class OpusEncoder extends Transform {
/**
* @description Расшифровщик если он найдет
* @readonly
* @private
*/
private readonly encoder: any = null;
/**
* @description Временные данные, используются в this.encoder
* @readonly
* @private
*/
private readonly db = {
remaining: null as Buffer,
buffer: null as Buffer,
bitstream: null as number,
argument: true as boolean,
index: 0
};
/**
* @description Название библиотеки и тип аудио для ffmpeg
* @return {name: string, ffmpeg: string}
* @public
* @static
*/
public static get lib(): {name: string, ffmpeg: string} {
if (loaded_lib?.name) return { name: loaded_lib.name, ffmpeg: "s16le" };
return { name: "Native/Opus", ffmpeg: "opus" };
};
/**
* @description Проверяем возможно ли начать читать поток
* @private
*/
private get argument() {
if (this.encoder) return this.db.buffer.length >= bit * (this.db.index + 1);
return this.db.argument;
};
/**
* @description Запуск класса расшифровки в opus
* @param options
* @constructor
* @public
*/
public constructor(options: TransformOptions = {autoDestroy: true, objectMode: true}) {
super(Object.assign({ readableObjectMode: true }, options));
//Если была найдена opus library
if (loaded_lib?.name) {
//Подключаем opus library
this.encoder = new loaded_lib.encoder(...loaded_lib.args);
this.db.buffer = Buffer.alloc(0);
}
};
/**
* @description Декодирование фрагмента в opus
* @readonly
* @private
*/
private readonly packet = (chunk: Buffer) => {
// Если есть подключенный кодировщик, то используем его
if (this.encoder) return this.encoder.encode(chunk, 960);
// Если размер буфера не является нужным, то пропускаем
else if (chunk.length < 26) return false;
// Если не находим OGGs_HEAD в буфере
else if (!chunk.subarray(0, 4).equals(OGG.OGGs_HEAD)) {
this.emit("error", Error(`capture_pattern is not ${OGG.OGGs_HEAD}`));
return false;
}
// Если находим stream_structure_version в буфере, но не той версии
else if (chunk.readUInt8(4) !== 0) {
this.emit("error", Error(`stream_structure_version is not ${0}`));
return false;
}
const pageSegments = chunk.readUInt8(26);
// Если размер буфера не подходит, то пропускаем
if (chunk.length < 27 || chunk.length < 27 + pageSegments) return false;
const table = chunk.subarray(27, 27 + pageSegments), sizes: number[] = [];
let totalSize = 0;
// Ищем номера opus буфера
for (let i = 0; i < pageSegments;) {
let size = 0, x = 255;
while (x === 255) {
if (i >= table.length) return false;
x = table.readUInt8(i); i++; size += x;
}
sizes.push(size);
totalSize += size;
}
// Если размер буфера не подходит, то пропускаем
if (chunk.length < 27 + pageSegments + totalSize) return false;
const bitstream = chunk.readUInt32BE(14);
let start = 27 + pageSegments;
//Ищем нужный пакет, тот самый пакет opus
for (const size of sizes) {
const segment = chunk.subarray(start, start + size);
const header = segment.subarray(0, 8);
// Если уже есть буфер данных
if (this.db.buffer) {
if (header.equals(OGG.OPUS_TAGS)) this.emit("tags", segment);
else if (this.db.bitstream === bitstream) this.push(segment);
}
// Если заголовок подходит под тип ogg/opus head
else if (header.equals(OGG.OPUS_HEAD)) {
this.emit("head", segment);
this.db.buffer = segment;
this.db.bitstream = bitstream;
}
// Если ничего из выше перечисленного не подходит
else this.emit("unknownSegment", segment);
start += size;
}
//Выдаем следующие данные
return chunk.subarray(start);
};
/**
* @description При получении данных через pipe или write, модифицируем их для одобрения со стороны discord
* @public
*/
public _transform = (chunk: Buffer, _: any, done: () => any) => {
let index = this.db.index, packet = () => chunk;
// Если есть подключенная библиотека расшифровки opus, то используем ее
if (this.encoder) {
this.db.buffer = Buffer.concat([this.db.buffer, chunk]);
packet = () => this.db.buffer.subarray(index * bit, (index + 1) * bit);
} else setImmediate(() => this.db.remaining = chunk);
// Если есть прошлый фрагмент расшифровки
if (this.db.remaining) {
chunk = Buffer.concat([this.db.remaining, chunk]);
this.db.remaining = null;
}
// Начинаем чтение пакетов
while (this.argument) {
const encode = this.packet(packet());
if (this.encoder) this.push(encode);
else {
if (encode) chunk = encode;
else break;
}
index++;
}
// Если номер пакета больше 1, то добавляем прошлый пакет в базу
if (index > 0) this.db.buffer = this.db.buffer.subarray(index * bit);
return done();
};
/**
* @description Удаляем данные по окончанию
* @public
*/
public _final = (cb: () => void) => {
this.destroy();
cb();
};
/**
* @description Удаляем данные по завершению
* @public
*/
public _destroy = () => {
if (typeof this.encoder?.delete === "function") this.encoder!.delete!();
for (let key of Object.keys(this.db)) this.db[key] = null;
//@ts-expect-error
this["encoder"] = null;
};
}
/**
* @author SNIPPIK
* @description Типы для правильной работы typescript
*/
namespace Methods {
/**
* @author SNIPPIK
* @description Поддерживаемый запрос к библиотеке
* @type supported
*/
export type supported = {
[name: string]: (lib: any) => current
}
/**
* @author SNIPPIK
* @description Выдаваемы методы для работы opus encoder
*/
export interface current {
//Имя библиотеки
name?: string;
//Аргументы для запуска
args?: any[];
//Класс для расшифровки
encoder?: any;
}
}