0

I was trying to make the Bitmovin Player autoplay without muted. And the browser said it is not allowed. But Netflix and Amazon movie work. Just wondering is there anyway that can make the Bitmovin Player autoplay without muted? Thank you!

config = {
key: 'INSERTPROVIDEDKEYHERE',
playback: {
  autoplay: true,
  muted: false
},
source: {
  dash: 'https://path/to/mpd/file.mpd',
  hls: 'https://path/to/hls/playlist/file.m3u8',
  smooth: 'https://path/to/manifest/file/Manifest',
  progressive: [{
    url: 'http://path/to/mp4',
    type: 'video/mp4'
  }, {
    url: 'http://path/to/webm',
    type: 'video/webm'
  }],
  poster: 'images/poster.jpg',  
}}

The browser returned: “Playback could not be started, reason: play() failed because the user didn’t interact with the document first.”

Anonymous Asked question May 13, 2021