Open In App

HTML | DOM Video duration Property

The Video duration property is used for returning the length of a video. The Video duration property returns the value in seconds. Different browsers return different precision values such as with safari returning up to 14 decimal places followed by opera returning up to 9 decimal places. The Video duration property is a read-only property. The Video duration function returns “NaN” if no video is set whereas if the video is streamed and has no predefined length, it returns “Inf” (Infinity). 

Syntax:



videoObject.duration

Below program illustrates the Video duration Property : 

Example: Getting the length of a video. 






<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML | DOM Video duration Property
    </title>
    <style>
        h1 {
            color: green;
        }
         
        h2 {
            font-family: Impact;
        }
         
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
 
    <h1>GeeksforGeeks</h1>
    <h2>Video Duration Property</h2>
    <br>
 
    <video id="Test_Video"
           width="360"
           height="240"
           controls>
        <source src="samplevideo.mp4"
                type="video/mp4">
        <source src="movie.ogg"
                type="video/ogg">
    </video>
 
    <p>For returning the length of the video,
      double click the "Return Length" button.
    </p>
    <button ondblclick="My_Video()"
            type="button">
      Return length
    </button>
 
    <p id="test"></p>
 
    <script>
        function My_Video() {
            var v =
                document.getElementById(
                  "Test_Video").duration;
           
            document.getElementById(
              "test").innerHTML = v;
        }
    </script>
 
</body>
 
</html>

Output:

Supported Browsers: the browser supported by HTML | DOM Video duration Property are listed below:


Article Tags :