Prop Video Defaultmuted
# Video defaultMuted Property
[ Video Object](#)
## Example
Set the video to be muted by default:
document.getElementById("myVideo").defaultMuted = true;
[Try it Yourself Β»](#)
* * *
## Definition and Usage
The `defaultMuted` property sets or returns whether the audio/video is muted by default.
Setting this property only changes the default muted state, not the current muted state. To change the current muted state, use the (#) property.
* * *
## Browser Support

The `defaultMuted` property is supported in Chrome and Safari 6.
* * *
## Syntax
Get the `defaultMuted` property:
_videoObject_.defaultMuted
Set the `defaultMuted` property:
_videoObject_.defaultMuted=true|false
## Property Values
| Value | Description |
| --- | --- |
| true|false | Specifies whether the video should be muted by default. * true - Indicates that the video should be muted by default. * false - Default. Indicates that the video should not be muted by default. |
## Technical Details
| Return Value: | A Boolean. Returns `true` if the video is muted by default, otherwise `false`. |
| --- |
| Default Value: | false |
* * Video Object](#)
YouTip