Initial commit

This commit is contained in:
Luca Schwan
2020-03-21 03:37:31 +01:00
commit d8bba07211
1069 changed files with 139402 additions and 0 deletions

30
node_modules/prism-media/typings/opus.d.ts generated vendored Normal file
View File

@ -0,0 +1,30 @@
import { Transform } from 'stream';
interface OpusOptions {
frameSize: number,
channels: number,
rate: number
}
export class OpusStream extends Transform {
public encoder: any; // TODO: type opusscript/node-opus
constructor(options?: OpusOptions);
public static readonly type: 'opusscript' | 'node-opus' | '@discordjs/opus';
public setBitrate(bitrate: number): void;
public setFEC(enabled: boolean): void;
public setPLP(percentage: number): void;
}
export namespace opus {
interface OpusOptions {
frameSize: number,
channels: number,
rate: number
}
export class Encoder extends OpusStream {}
export class Decoder extends OpusStream {}
export class OggDemuxer extends Transform {}
export class WebmDemuxer extends Transform {}
}