diff options
author | metamuffin <metamuffin@disroot.org> | 2025-04-16 14:53:58 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-04-16 14:53:58 +0200 |
commit | edfd710c055621d7ef0c8d0e9c6668b4aa2283d7 (patch) | |
tree | 1efec517324f8bda72a2b365e82c23081b4f5898 /web | |
parent | a9c897c7d7df5509a195055e95dfa821fe7aa274 (diff) | |
download | jellything-edfd710c055621d7ef0c8d0e9c6668b4aa2283d7.tar jellything-edfd710c055621d7ef0c8d0e9c6668b4aa2283d7.tar.bz2 jellything-edfd710c055621d7ef0c8d0e9c6668b4aa2283d7.tar.zst |
move seek index types to remuxer
Diffstat (limited to 'web')
-rw-r--r-- | web/script/player/track/mse.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/web/script/player/track/mse.ts b/web/script/player/track/mse.ts index 6bb77e0..5565a6b 100644 --- a/web/script/player/track/mse.ts +++ b/web/script/player/track/mse.ts @@ -156,7 +156,6 @@ export class MSEPlayerTrack extends PlayerTrack { this.source_buffer.changeType(track_to_content_type(this.active_format.value!.format, this.active_format.value!.container)); // this.source_buffer.timestampOffset = this.active_format.value?.format.remux ? 0 : frag.start this.source_buffer.timestampOffset = 0 - console.log(`append track at ${this.source_buffer.timestampOffset} ${this.trackinfo.kind} ${this.track_index}`); this.source_buffer.appendBuffer(frag.buf); } } |