We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8aff4e2 commit d411734Copy full SHA for d411734
src/renderer/components/ft-shaka-video-player/ft-shaka-video-player.js
@@ -2514,6 +2514,14 @@ export default defineComponent({
2514
// #region setup
2515
2516
onMounted(async () => {
2517
+ watch(() => props.currentPlaybackRate,
2518
+ (newRate) => {
2519
+ if (video.value) {
2520
+ video.value.playbackRate = newRate
2521
+ video.value.defaultPlaybackRate = newRate
2522
+ }
2523
2524
+ )
2525
const videoElement = video.value
2526
2527
const volume = sessionStorage.getItem('volume')
0 commit comments