Add CMAF format and CMAF/init segment support to HLS muxer

This commit is contained in:
Vanilagy
2026-03-30 17:06:57 +02:00
parent 7b70756961
commit 3bcbcc13f0
16 changed files with 766 additions and 178 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ test('createAesDecryptStream', async () => {
const source = new BufferSource(ciphertext);
const reader = new Reader(source);
const stream = createAes128CbcDecryptStream(reader, () => ({ key, iv }));
const stream = createAes128CbcDecryptStream(reader, () => ({ key, iv }), () => {});
const streamReader = stream.getReader();
const chunks: Uint8Array[] = [];