# Ad Audio

If your app allows users to mute sound effects or music independently from the device volume controls, ensure a seamless audio experience by displaying ads that follow the same audio settings as your app. For example, if a user mutes sound effects or music in your app, display ads that are also muted.

Use the following API to mute the audio in ads:

{% tabs %}
{% tab title="Android" %}
{% code title="Kotlin" %}

```kotlin
FairBid.Settings.setMuted(true)
```

{% endcode %}

{% code title="Java" %}

```java
FairBid.Settings.setMuted(true);
```

{% endcode %}

If you wish to start the SDK with muted ads, make sure you call this API before starting the SDK:

{% code title="Kotlin" %}

```kotlin
FairBid.Settings.setMuted(true)
FairBid.start(appId, activity)
```

{% endcode %}

{% code title="Java" %}

```java
FairBid.Settings.setMuted(true);
FairBid.start(appId, activity);

```

{% endcode %}
{% endtab %}

{% tab title="iOS" %}
{% code title="Swift" %}

```swift
//getter
let isMuted = FairBid.settings().isMuted
//setter
FairBid.settings().isMuted = true
```

{% endcode %}

{% code title="Objective-C" %}

```objective-c
//getter
BOOL isMuted = FairBid.settings.isMuted;
//setter
FairBid.settings.muted = true;
```

{% endcode %}
{% endtab %}

{% tab title="Unity" %}
{% code title="C#" %}

```csharp
using Fyber;

Settings.SetMuted(true);
```

{% endcode %}
{% endtab %}
{% endtabs %}

## Ad Audio Networks <a href="#h_01jcdrtjbp0hgkt2spkzgftg5h" id="h_01jcdrtjbp0hgkt2spkzgftg5h"></a>

The following networks are compatible with the ad audio mute setting:

{% tabs %}
{% tab title="Android" %}

* AdMob/Google Bidding
* AppLovin
* DT Exchange (Interstitial only)
* InMobi
* Liftoff Monetize
* Mintegral
* Verve
  {% endtab %}

{% tab title="iOS" %}

* AdMob/Google Bidding
* AppLovin
* Chartboost
* DT Exchange (Interstitial only)
* Google Ad Manager
* InMobi
* Liftoff Monetize
* Mintegral
  {% endtab %}

{% tab title="Unity" %}
**Unity-Android:**

* AdMob/Google Bidding
* AppLovin
* DT Exchange (Interstitial only)
* InMobi
* Liftoff Monetize
* Mintegral
* Verve

**Unity-iOS:**

* AdMob/Google Bidding
* AppLovin
* Chartboost
* DT Exchange (Interstitial only)
* InMobi
* Liftoff Monetize
* Mintegral
* Verve
  {% endtab %}
  {% endtabs %}

{% hint style="info" %}

* The ad audio mute setting does not affect ads from networks that are not listed above or programmatic ads rendered by DT FairBid.
* For ads from AdMob/Google Bidding and DT Exchange, apply the mute setting **before** the ad is requested. If an ad is already loaded on the device before the user mutes the sound in the application (which applies the ad audio mute setting), the loaded ad still shows with audio.
  {% endhint %}
