0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

JavaScriptでvideoの再生、失敗を取得する方法

Posted at

JavaScriptでvideoの再生、失敗を取得する方法になります。

JavaScriptでvideoの再生、失敗を取得する方法

<video id="video"></video>
const video = document.getElementById('video')

// videoを再生
const startVideoPlay = video.play() 

if (startVideoPlay !== undefined) {
  startVideoPlay
    .then(() => {
      console.log('再生が成功')
    })
    .catch(() => {
      console.log('再生が失敗')
    })
    .finally(() => {
      console.log('再生の処理が終了')
    })
}

上記のように、Promiseでvideoの再生、失敗を取得することが可能です。

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?