diff --git a/plugins/skip-silences/front.js b/plugins/skip-silences/front.js index 77414eb9..16f7ff94 100644 --- a/plugins/skip-silences/front.js +++ b/plugins/skip-silences/front.js @@ -19,8 +19,16 @@ module.exports = () => { isSilent = false; }); - speechEvents.on("stopped_speaking", function () { - if (!(video.paused || video.seeking || video.ended)) { + speechEvents.on("stopped_speaking", function () { + if ( + !( + video.paused || + video.seeking || + video.ended || + video.muted || + video.volume === 0 + ) + ) { isSilent = true; skipSilence(); }