English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

HTML Reference Manual

HTML Tag Directory

HTML: <video> muted attribute

<video> muted attribute usage, the muted attribute is a boolean (Boolean) attribute. The muted attribute sets or returns the audio/whether the video should be muted (turn off the sound).

 HTML <video> tag

Online Example

Muted Video:

<video controls muted>
  <source src="movie.mp4" type="video/mp4">
  <source src="movie.ogg" type="video/ogg">
  Your browser does not support the video tag.
</video>
Test to see ‹/›

Browser compatibility

IEFirefoxOperaChromeSafari

Internet Explorer 10, Firefox, Opera, Chrome, and Safari 6 supports the muted attribute.

Note: Internet Explorer 9 and earlier IE versions do not support the muted attribute of <video>.

Definition and usage

The muted attribute is a boolean (boolean) attribute.

The muted attribute sets or returns the audio/whether the video should be muted (turn off the sound).

HTML 4.01 with HTML5differences

<video> tag is HTML5 New tags.

Differences between HTML and XHTML

In XHTML, attributes are not allowed to be abbreviated, the muted attribute must be defined as <video muted="muted">.

Syntax

<video muted>
 HTML <video> tag