Back to Content

HTMLMediaElement: volume property

files/en-us/web/api/htmlmediaelement/volume/index.md

latest569 B
Original Source

{{APIRef("HTML DOM")}}

The HTMLMediaElement.volume property sets the volume at which the media will be played.

Value

A number between 0 and 1, where 0 is effectively muted, and 1 is the loudest possible value.

Examples

js
const obj = document.createElement("audio");
console.log(obj.volume); // 1
obj.volume = 0.75;

Specifications

{{Specifications}}

Browser compatibility

{{Compat}}

See also

  • {{domxref("HTMLMediaElement")}}: Interface used to define the HTMLMediaElement.volume property
  • {{domxref("HTMLMediaElement.muted")}}