Merge pull request #57 from omarroth/update-playbackrate

Update playbackRate after switching qualities
This commit is contained in:
Jeremy Thomerson 2020-04-26 20:27:08 -04:00 committed by GitHub
commit d40a5fb271
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -16,6 +16,7 @@ module.exports = function(videojs) {
function changeQuality(event, newSource) {
var sources = player.currentSources(),
currentTime = player.currentTime(),
currentPlaybackRate = player.playbackRate(),
isPaused = player.paused(),
selectedSource;
@ -49,6 +50,7 @@ module.exports = function(videojs) {
// player's `src` is updated but the player's `currentTime` has not yet
// been set by the SafeSeek operation.
player._qualitySelectorSafeSeek = new SafeSeek(player, currentTime);
player.playbackRate(currentPlaybackRate);
}
if (!isPaused) {