1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Save playback speed rate, and restore when playing a video again

This commit is contained in:
José Olívio M. Pedrosa 2021-10-30 18:25:06 -03:00
parent 55e09b6466
commit 5ffe4aac8f
No known key found for this signature in database
GPG key ID: 9F894BED87ABBEC8
3 changed files with 13 additions and 0 deletions

View file

@ -113,3 +113,4 @@
- [tikuf](https://github.com/tikuf/)
- [Tim Hobbs](https://github.com/timhobbs)
- [SvenVandenbrande](https://github.com/SvenVandenbrande)
- [jomp16](https://github.com/jomp16)

View file

@ -3602,6 +3602,9 @@ class PlaybackManager {
setPlaybackRate(value, player = this._currentPlayer) {
if (player && player.setPlaybackRate) {
player.setPlaybackRate(value);
// Save the new playback rate in the browser session, to restore when playing a new video.
sessionStorage.setItem('playbackRateSpeed', value);
}
}

View file

@ -446,6 +446,7 @@ import { appRouter } from '../../../components/appRouter';
updatePlayerStateInternal(event, player, state);
updatePlaylist();
enableStopOnBack(true);
updatePlaybackRate(player);
}
}
@ -1253,6 +1254,14 @@ import { appRouter } from '../../../components/appRouter';
}
}
function updatePlaybackRate(player) {
// Restore playback speed control, if it exists in the session.
const playbackRateSpeed = sessionStorage.getItem('playbackRateSpeed');
if (playbackRateSpeed !== null) {
player.setPlaybackRate(playbackRateSpeed);
}
}
shell.enableFullscreen();
let currentPlayer;