Skip to content Skip to sidebar Skip to footer

How To Identify Volume Change In Youtube Player

I am using 'angualr-youtube-embed' directive to embed youtube player in my angular web app. In that I have to identify play and pause and volume change events. To listen play and

Solution 1:

Just in case if anyone has the same question, here is my full answer.

For today the code looks like:

setInterval(this.getChangedVolume, 250)

getChangedVolume () {
  let currentYoutubeVolume = this.player.getVolume()
  // Do some things, for example (will show Promise):// console.log(currentYoutubeVolume)// YouTube returns Promise, but we need actual data, so:// Promise.resolve(currentYoutubeVolume).then(data => { this.volumeLv = data })
  }

Solution 2:

player.getVolume():Number

Returns the player's current volume, an integer between 0 and 100. Note that getVolume() will return the volume even if the player is muted.

For more Detail check this: YouTube Player Controls

Post a Comment for "How To Identify Volume Change In Youtube Player"