mirror of
https://github.com/arcodange-org/mediabunny.git
synced 2026-09-27 19:03:46 +02:00
27 lines
830 B
TypeScript
27 lines
830 B
TypeScript
import { expect, test } from 'vitest';
|
|
import { Input } from '../../src/input.js';
|
|
import { UrlSource } from '../../src/source.js';
|
|
import { ALL_FORMATS } from '../../src/input-format.js';
|
|
import { AudioBufferSink } from '../../src/media-sink.js';
|
|
import { assert } from '../../src/misc.js';
|
|
|
|
// VLC creates OGG files with an empty EOS page, which previously caused decoding errors
|
|
test('can decode OGG Vorbis file with empty EOS page', async () => {
|
|
using input = new Input({
|
|
source: new UrlSource('/vorbis-eos.ogg'),
|
|
formats: ALL_FORMATS,
|
|
});
|
|
|
|
const track = await input.getPrimaryAudioTrack();
|
|
assert(track);
|
|
|
|
const sink = new AudioBufferSink(track);
|
|
const buffers: AudioBuffer[] = [];
|
|
|
|
for await (const { buffer } of sink.buffers(4, 10)) {
|
|
buffers.push(buffer);
|
|
}
|
|
|
|
expect(buffers.length).toBeGreaterThan(0);
|
|
});
|