You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/streaming/controllers/StreamController.js
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1176,6 +1176,10 @@ function StreamController() {
1176
1176
logger.info(`Start time from URI parameters: ${startTimeFromUri}`);
1177
1177
// Do not move closer to the live edge as defined by live delay
1178
1178
startTime=Math.min(startTime,startTimeFromUri);
1179
+
}else{
1180
+
if(adapter.getDuration()===dvrWindow.end){
1181
+
startTime=dvrWindow.start;
1182
+
}
1179
1183
}
1180
1184
}
1181
1185
// If calcFromSegmentTimeline is enabled we saw problems caused by the MSE.seekableRange when starting at dvrWindow.start. Apply a small offset to avoid this problem.
0 commit comments