Open In App

How to mute video using HTML5 ?

Improve
Improve
Like Article
Like
Save
Share
Report

The purpose of this article is to mute video using HTML5.

Approach: Video Tag is new to HTML5. Users can use muted attributes in video tags to mute a video.

The muted attribute is a boolean attribute. When present, it specifies that the audio output of the video should be muted.

Syntax:

<video controls muted>

Example: In this example, we are using the above-explained approach.

HTML




<!DOCTYPE html>
<html>
<body>
    <h1>Muted Video</h1>
    <!-- Video mute -->
    <video controls muted width="600px">
        <source src=
                type="video/mp4">
    </video>
</body>
</html>


Output:


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