Implement "cross-track offset" for MediaStreamTrack sources & small fixes

This commit is contained in:
Vanilagy
2025-04-28 18:31:53 +02:00
parent ca77ce2d94
commit ac1b009486
4 changed files with 102 additions and 21 deletions
+50
View File
@@ -0,0 +1,50 @@
<button>Go</button>
<script src="../dist/metamuxer.js"></script>
<script type="module">
function download(blob, filename) {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = filename;
a.click();
URL.revokeObjectURL(url);
}
const button = document.querySelector('button');
button.addEventListener('click', async () => {
const stream = await navigator.mediaDevices.getUserMedia({ video: true, audio: true });
const videoTrack = stream.getVideoTracks()[0];
const audioTrack = stream.getAudioTracks()[0];
const output = new Metamuxer.Output({
target: new Metamuxer.BufferTarget(),
format: new Metamuxer.Mp4OutputFormat(),
});
if (videoTrack) {
output.addVideoTrack(new Metamuxer.MediaStreamVideoTrackSource(videoTrack, {
codec: 'avc',
bitrate: Metamuxer.QUALITY_MEDIUM
}));
}
if (audioTrack) {
output.addAudioTrack(new Metamuxer.MediaStreamAudioTrackSource(audioTrack, {
codec: 'aac',
bitrate: Metamuxer.QUALITY_MEDIUM
}));
}
await output.start();
await new Promise(resolve => setTimeout(resolve, 3000));
await output.finalize();
console.log(output.target.buffer);
download(new Blob([output.target.buffer]), 'livetest' + output.format.fileExtension);
videoTrack?.stop();
audioTrack?.stop();
});
</script>
+41 -12
View File
@@ -40,8 +40,11 @@ export abstract class MediaSource {
_closingPromise: Promise<void> | null = null;
/** @internal */
_closed = false;
/** @internal */
_offsetTimestamps = false;
/**
* @internal
* A time offset in seconds that is added to all timestamps generated by this source.
*/
_timestampOffset = 0;
/** @internal */
_ensureValidAdd() {
@@ -431,8 +434,7 @@ class VideoEncoderWrapper {
if (this.customEncoder) {
return this.customEncoderQueueSize;
} else {
assert(this.encoder);
return this.encoder.encodeQueueSize;
return this.encoder?.encodeQueueSize ?? 0;
}
}
}
@@ -540,9 +542,6 @@ export class MediaStreamVideoTrackSource extends VideoSource {
/** @internal */
private _track: MediaStreamVideoTrack;
/** @internal */
override _offsetTimestamps = true;
constructor(track: MediaStreamVideoTrack, encodingConfig: VideoEncodingConfig) {
if (!(track instanceof MediaStreamTrack) || track.kind !== 'video') {
throw new TypeError('track must be a video MediaStreamTrack.');
@@ -563,9 +562,26 @@ export class MediaStreamVideoTrackSource extends VideoSource {
override _start() {
this._abortController = new AbortController();
let frameReceived = false;
const processor = new MediaStreamTrackProcessor({ track: this._track });
const consumer = new WritableStream<VideoFrame>({
write: (videoFrame) => {
const timestampInSeconds = videoFrame.timestamp / 1e6;
assert(this._connectedTrack);
const muxer = this._connectedTrack.output._muxer;
if (muxer.firstMediaStreamTimestamp === null) {
// We're the first MediaStreamTrack of this output to receive data
muxer.firstMediaStreamTimestamp = timestampInSeconds;
}
if (!frameReceived) {
// Math.min to ensure the timestamps can't get negative
this._timestampOffset = -Math.min(muxer.firstMediaStreamTimestamp, timestampInSeconds);
frameReceived = true;
}
if (this._encoder.getQueueSize() >= 4) {
// Drop frames if the encoder is overloaded
videoFrame.close();
@@ -1053,8 +1069,7 @@ class AudioEncoderWrapper {
} else if (this.isPcmEncoder) {
return 0;
} else {
assert(this.encoder);
return this.encoder.encodeQueueSize;
return this.encoder?.encodeQueueSize ?? 0;
}
}
}
@@ -1191,9 +1206,6 @@ export class MediaStreamAudioTrackSource extends AudioSource {
/** @internal */
private _track: MediaStreamAudioTrack;
/** @internal */
override _offsetTimestamps = true;
constructor(track: MediaStreamAudioTrack, encodingConfig: AudioEncodingConfig) {
if (!(track instanceof MediaStreamTrack) || track.kind !== 'audio') {
throw new TypeError('track must be an audio MediaStreamTrack.');
@@ -1209,9 +1221,26 @@ export class MediaStreamAudioTrackSource extends AudioSource {
override _start() {
this._abortController = new AbortController();
let dataReceived = false;
const processor = new MediaStreamTrackProcessor({ track: this._track });
const consumer = new WritableStream<AudioData>({
write: (audioData) => {
const timestampInSeconds = audioData.timestamp / 1e6;
assert(this._connectedTrack);
const muxer = this._connectedTrack.output._muxer;
if (muxer.firstMediaStreamTimestamp === null) {
// We're the first MediaStreamTrack of this output to receive data
muxer.firstMediaStreamTimestamp = timestampInSeconds;
}
if (!dataReceived) {
// Math.min to ensure the timestamps can't get negative
this._timestampOffset = -Math.min(muxer.firstMediaStreamTimestamp, timestampInSeconds);
dataReceived = true;
}
if (this._encoder.getQueueSize() >= 4) {
// Drop data if the encoder is overloaded
audioData.close();
+11 -8
View File
@@ -7,6 +7,13 @@ export abstract class Muxer {
output: Output;
mutex = new AsyncMutex();
/**
* This field is used to synchronize multiple MediaStreamTracks. They use the same time coordinate system across
* tracks, and to ensure correct audio-video sync, we must use the same offset for all of them. The reason an offset
* is needed at all is because the timestamps typically don't start at zero.
*/
firstMediaStreamTimestamp: number | null = null;
constructor(output: Output) {
this.output = output;
}
@@ -29,12 +36,13 @@ export abstract class Muxer {
onTrackClose(track: OutputTrack) {}
private trackTimestampInfo = new WeakMap<OutputTrack, {
timestampOffset: number;
maxTimestamp: number;
maxTimestampBeforeLastKeyFrame: number;
}>();
protected validateAndNormalizeTimestamp(track: OutputTrack, timestampInSeconds: number, isKeyFrame: boolean) {
timestampInSeconds += track.source._timestampOffset;
let timestampInfo = this.trackTimestampInfo.get(track);
if (!timestampInfo) {
if (!isKeyFrame) {
@@ -42,17 +50,12 @@ export abstract class Muxer {
}
timestampInfo = {
timestampOffset: timestampInSeconds,
maxTimestamp: track.source._offsetTimestamps ? 0 : timestampInSeconds,
maxTimestampBeforeLastKeyFrame: track.source._offsetTimestamps ? 0 : timestampInSeconds,
maxTimestamp: timestampInSeconds,
maxTimestampBeforeLastKeyFrame: timestampInSeconds,
};
this.trackTimestampInfo.set(track, timestampInfo);
}
if (track.source._offsetTimestamps) {
timestampInSeconds -= timestampInfo.timestampOffset;
}
if (timestampInSeconds < 0) {
throw new Error(`Timestamps must be non-negative (got ${timestampInSeconds}s).`);
}
-1
View File
@@ -1,4 +1,3 @@
- https://github.com/Vanilagy/mp4-muxer/issues/83 tell him it's possible now
- cross-track offset for streaming sources
- textsubtitlesource, chunked piping
- More efficient MP3 loading when reading sequentially