javascript videoタグの動画の全再生時間を取得する
- 作成日 2022.10.10
- javascript
- javascript
javascriptで、videoタグの動画の全再生時間を取得するサンプルコードを記述してます。
環境
- OS windows11 home
- ブラウザ chrome 106.0.5249.103
videoタグの動画の全再生時間を取得
動画の全再生時間を取得するには、「duration」を使用して取得します。
※秒単位で取得されます。
<video id="video" width="700" height="400" controls>
<source src="sample.mp4">
</video>
<button type="button" id="btn">取得/button>
<script>
document.getElementById('btn').onclick = function(){
console.log( document.getElementById('video').duration )
}
</script>
実行結果をみると取得されていることが確認できます。
また、javascript部はdocument.getElementByIdを省略して記述することも可能です。関数もアロー関数を使用できます。
btn.onclick = () => {
video.duration
}
秒だけを表示したい場合は、「Math.floor」で切り捨てを実行します。
Math.floor(video.duration)
サンプルコード
以下は、ボタンをクリックすると、動画の全体の時間を取得して、結果を表示するだけのサンプルコードとなります。
※cssには「Material Design for Bootstrap」を使用してます。関数はアロー関数を使用してます。
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>mebeeサンプル</title>
<!-- Font Awesome -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap" rel="stylesheet" />
<!-- MDB -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/mdb-ui-kit/4.1.0/mdb.min.css" rel="stylesheet" />
</head>
<style>
.main {
margin: 0 auto;
margin-top: 150px;
display: flex;
flex-direction: column;
align-items: center;
font-size: 20px;
}
</style>
<script>
const hoge = () => {
result.innerHTML = video.duration
}
</script>
<body>
<div class="main">
<video id="video" autoplay muted style="width:700px;height:400px;">
<source src="sample.mp4">
</video>
<span id="result" class="badge badge-warning"></span>
<button type="button" class="btn btn-raised btn-warning mt-3" onclick="hoge();">取得</button>
</div>
</body>
</html>
表示されていることが確認できます。
-
前の記事
VBA アルファベットの先頭だけ大文字に変換する 2022.10.10
-
次の記事
PostgreSQL テーブルにコメント追加する 2022.10.10
コメントを書く