21 lines
594 B
TypeScript
21 lines
594 B
TypeScript
/**
|
|
* Registers AC-3 and E-AC-3 decoders, which Mediabunny will then use automatically when applicable. Make sure to call
|
|
* this function before starting any decoding task.
|
|
*
|
|
* @group \@mediabunny/ac3
|
|
* @public
|
|
*/
|
|
export declare const registerAc3Decoder: () => void;
|
|
|
|
/**
|
|
* Registers AC-3 and E-AC-3 encoders, which Mediabunny will then use automatically when applicable. Make sure to call
|
|
* this function before starting any encoding task.
|
|
*
|
|
* @group \@mediabunny/ac3
|
|
* @public
|
|
*/
|
|
export declare const registerAc3Encoder: () => void;
|
|
|
|
export { }
|
|
export as namespace MediabunnyAc3;
|