Fix ISOBMFF muxer track alternate groups (fixes #454), fixed mutex race condition in Output

This commit is contained in:
Vanilagy
2026-08-03 14:50:36 +02:00
parent 7a871cec49
commit 445911edd0
3 changed files with 22 additions and 10 deletions
+7 -7
View File
@@ -47,7 +47,7 @@
format = new Mediabunny.MkvOutputFormat();
format = new Mediabunny.MovOutputFormat();
format = new Mediabunny.Mp4OutputFormat({ fastStart: 'reserve' });
format = new Mediabunny.WebMOutputFormat();
format = new Mediabunny.Mp4OutputFormat();
let target = new Mediabunny.BufferTarget();
/*
@@ -118,21 +118,21 @@
*/
let videoSource = new Mediabunny.CanvasSource(canvas, {
codec: 'vp9',
codec: 'avc',
//fullCodecString: 'avc1.42001f',
bitrate: 1e6,
alpha: 'keep',
onEncoderConfig: console.log,
});
let audioSource = new Mediabunny.AudioBufferSource({
codec: 'opus',
codec: 'aac',
bitrate: 128e3,
});
let subtitleSource = new Mediabunny.TextSubtitleSource('webvtt');
output.addVideoTrack(videoSource, { languageCode: 'eng', name: 'Mononoké', maximumPacketCount: 100 });
output.addAudioTrack(audioSource, { name: 'Yooo', maximumPacketCount: 1000 });
//output.addSubtitleTrack(subtitleSource);
output.addSubtitleTrack(subtitleSource);
output.start();
@@ -191,8 +191,8 @@ Testing... <00:17.350>One... <00:18.125>Two...
9. <b>justify (bottom, right)</b>.
`;
//subtitleSource.add(simpleWebvttFile);
//subtitleSource.close();
subtitleSource.add(simpleWebvttFile);
subtitleSource.close();
const p = document.createElement('p');
document.body.append(p);
@@ -216,5 +216,5 @@ Testing... <00:17.350>One... <00:18.125>Two...
await output.finalize();
console.log(target);
//download(new Blob([target.buffer]), 'test' + format.fileExtension);
download(new Blob([target.buffer]), 'test' + format.fileExtension);
</script>
+12 -1
View File
@@ -493,6 +493,17 @@ export const tkhd = (
flags |= 0x1; // Track enabled
}
// Set the alternate group based on the track type; this mirror's how FFmpeg does it. A more advanced version would
// determine the alternate groups based on the actual track pairability graph. Note that it appears important that
// video get assigned to group 0, see https://github.com/Vanilagy/mediabunny/issues/454.
const alternateGroup = trackData.type === 'video'
? 0
: trackData.type === 'audio'
? 1
: trackData.type === 'subtitle'
? 2
: assertNever(trackData);
return fullBox('tkhd', +needsU64, flags, [
u32OrU64(creationTime), // Creation time
u32OrU64(creationTime), // Modification time
@@ -501,7 +512,7 @@ export const tkhd = (
u32OrU64(durationInGlobalTimescale), // Duration
Array(8).fill(0), // Reserved
u16(0), // Layer
u16(trackData.track.id), // Alternate group
u16(alternateGroup), // Alternate group
fixed_8_8(trackData.type === 'audio' ? 1 : 0), // Volume
u16(0), // Reserved
matrixToBytes(matrix), // Matrix
+3 -2
View File
@@ -830,7 +830,8 @@ export class Output<
return this._startPromise = (async () => {
this.state = 'started';
const release = await this._mutex.acquire();
// We want to call muxer.start immediately, so we avoid using an await here
const releasePromise = this._mutex.acquire();
try {
await this._muxer.start();
@@ -838,7 +839,7 @@ export class Output<
const promises = this.tracks.map(track => track.source._start());
await Promise.all(promises);
} finally {
release();
(await releasePromise)();
}
})();
}