aboutsummaryrefslogtreecommitdiff
path: root/web/script/player/track/mse.ts
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-01-29 13:19:18 +0100
committermetamuffin <metamuffin@disroot.org>2024-01-29 13:19:18 +0100
commita4526fd2eb670c8fac2c28eb1597f0c091f25a2a (patch)
treef14ca08cbd89a365fa6859fd400e303ab78b04c9 /web/script/player/track/mse.ts
parent424286e569fa48314447464070e9f4e8cfd8dc94 (diff)
downloadjellything-a4526fd2eb670c8fac2c28eb1597f0c091f25a2a.tar
jellything-a4526fd2eb670c8fac2c28eb1597f0c091f25a2a.tar.bz2
jellything-a4526fd2eb670c8fac2c28eb1597f0c091f25a2a.tar.zst
write absolute pts in fragments
Diffstat (limited to 'web/script/player/track/mse.ts')
-rw-r--r--web/script/player/track/mse.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/script/player/track/mse.ts b/web/script/player/track/mse.ts
index a4320b5..c916204 100644
--- a/web/script/player/track/mse.ts
+++ b/web/script/player/track/mse.ts
@@ -139,7 +139,7 @@ export class MSEPlayerTrack extends PlayerTrack {
this.current_load = seg;
// TODO why is appending so unreliable?! sometimes it does not add it
this.source_buffer.changeType(track_to_content_type(this.track_from_profile())!);
- this.source_buffer.timestampOffset = seg.start;
+ // this.source_buffer.timestampOffset = seg.start;
this.source_buffer.appendBuffer(seg.buf);
}
}