diff --git a/app/js/streaming/Stream.js b/app/js/streaming/Stream.js index 150dc31c4..0cb690865 100644 --- a/app/js/streaming/Stream.js +++ b/app/js/streaming/Stream.js @@ -491,9 +491,7 @@ MediaPlayer.dependencies.Stream = function() { if (tmSpeed !== 1) { this.setTrickModeSpeed(1); } else { - // Set the currentTime here to be sure that videoTag is ready to accept the seek (cause IE fail on set currentTime on BufferUpdate) if (playStartTime >= 0) { - setVideoModelCurrentTime.call(this, playStartTime); playStartTime = -1; } else { startBuffering.call(this); @@ -927,7 +925,6 @@ MediaPlayer.dependencies.Stream = function() { if (this.manifestExt.getIsStartOver(manifest)) { startFragmentInfoControllers.call(this); } - play.call(this); },