ogg-opus-decoder
Advanced tools
Comparing version 1.3.0 to 1.3.1
{ | ||
"name": "ogg-opus-decoder", | ||
"version": "1.3.0", | ||
"version": "1.3.1", | ||
"description": "Web Assembly streaming Ogg Opus decoder", | ||
@@ -5,0 +5,0 @@ "main": "dist/ogg-opus-decoder.min.js", |
# `ogg-opus-decoder` | ||
`ogg-opus-decoder` is a Web Assembly Ogg Opus audio decoder. | ||
* 115.5 KiB minified bundle size | ||
* 116.1 KiB minified bundle size | ||
* Browser and NodeJS support | ||
@@ -6,0 +6,0 @@ * Built in Web Worker support |
@@ -7,4 +7,9 @@ type OpusDecodedAudio = { | ||
type OggOpusDecoderOptions = { | ||
forceStereo?: boolean | ||
} | ||
declare module 'ogg-opus-decoder' { | ||
export class OggOpusDecoder { | ||
public constructor(options?: OggOpusDecoderOptions) | ||
ready: Promise<void>; | ||
@@ -17,2 +22,3 @@ reset: () => Promise<void>; | ||
export class OggOpusDecoderWebWorker { | ||
public constructor(options?: OggOpusDecoderOptions) | ||
ready: Promise<void>; | ||
@@ -19,0 +25,0 @@ reset: () => Promise<void>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
265106
1124