# Volume Booster
ByteArk Player supports boosting the audio volume above the normal range — up to 3× by default (configurable through options). Enable it via the volumeBooster option.
# Volume Booster display

# Options
| Name | Type | Required | Description |
|---|---|---|---|
| volumeBooster | Object | No | Volume booster configuration |
| volumeBooster.maxBoost | Number | No | Maximum boost multiplier (default 3) |
# Example
<!doctype html>
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<div id="video-player"></div>
<script src="https://byteark-sdk.cdn.byteark.com/player/v2/byteark-player.min.js"></script>
<script>
var player = bytearkPlayer('video-player', {
fluid: true,
volumeBooster: {
maxBoost: 3,
},
sources: [{
title: 'Big Buck Bunny',
src: '<MEDIA_URL>',
type: 'application/x-mpegURL'
}]
});
</script>
</body>
</html>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Note
Boosting beyond 1.0× may cause audio distortion depending on the source content.