Skip to content

Mute video

MuteVideo #

MuteVideo(value: bool = True)

Bases: RapidataSetting

Mute the video. If this setting is not supplied, the video will not be muted.

Parameters:

Name Type Description Default
value bool

Whether to mute the video. Defaults to True.

True
Source code in src/rapidata/rapidata_client/settings/mute_video.py
def __init__(self, value: bool = True):
    if not isinstance(value, bool):
        raise ValueError("The value must be a boolean.")
    super().__init__(key="mute_video_asset", value=value)