setAutopause

Column
promise
T/F
default : true
Tags
Autopause 설정 상태 변경 T/F 동일 브라우저에서 다른 영상 재생 시 기존영상 자동 정지

setAutopause

setAutopause(autopause: boolean): Promise<boolean, (UnsupportedError|Error)>
Autopause 설정 상태 변경 T/F 동일 브라우저에서 다른 영상 재생 시 기존영상 자동 정지
 
default : true

함수 예시

player.setAutopause(true or false)
  • autupause 해제 예시
player.setAutopause(false).then(function(autopause) { // autopause was turned off }).catch(function(error) { switch (error.name) { case 'UnsupportedError': // Autopause is not supported with the current player or browser break; default: // some other error occurred break; } });