mirror of
https://github.com/iv-org/videojs-quality-selector.git
synced 2024-11-23 05:39:44 +00:00
Merge pull request #57 from omarroth/update-playbackrate
Update playbackRate after switching qualities
This commit is contained in:
commit
d40a5fb271
@ -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) {
|
||||
|
Loading…
Reference in New Issue
Block a user