diff --git a/src/components/application/ptplayer/videoplayer.vue b/src/components/application/ptplayer/videoplayer.vue index 045093a5..3ec870ce 100644 --- a/src/components/application/ptplayer/videoplayer.vue +++ b/src/components/application/ptplayer/videoplayer.vue @@ -147,7 +147,7 @@ export default { fluid: true, preload: 'auto', - volume: 0.5, + volume: 1, aspectRatio: '16:9', autoplay: true, width: '100%', @@ -420,8 +420,8 @@ export default { }); }, playerReadied(player) { - // console.log('Setting volume to ' + this.$store.getters.getSettingPTPLAYERVOLUME ) - this.player.volume(this.$store.getters.getSettings.PTPLAYERVOLUME || 0); + // console.log('Setting volume to ' + this.$store.getters.getSettingPTPLAYERVOLUME) + this.player.volume(this.$store.getters.getSettings.PTPLAYERVOLUME || 100); this.player.currentTime(this.initialOffset / 1000); },