Open In App

HTML | DOM Video duration Property

Improve
Improve
Like Article
Like
Save
Share
Report

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. 

html




<!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:

  • Before clicking the Button:
  • After Clicking The Button:

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

  • Google Chrome 1 and above
  • Edge 12 and above
  • Internet Explorer 9 and above
  • Firefox 3.5 and above
  • Opera 12.1 and above
  • Apple Safari 3.1 and above


Last Updated : 16 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads