Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 4 additions & 28 deletions mddocs/audio_browser_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,16 @@

> [!NOTE]
> Banuba does not deliver audio content for the Video Editor SDK.
The Video Editor can apply audio files stored on the device. The SDK is not responsible for downloading audio content except for [Soundstripe](https://www.soundstripe.com/) and [Mubert](https://mubert.com/).
The Video Editor can apply audio files stored on the device. The SDK is not responsible for downloading audio content except for [Soundstripe](https://www.soundstripe.com/).

Audio Browser is a specific module that allows to browse, play and apply audio content within video editor.
It supports 3 sources for audio content:

1. Soundstripe - includes built in integration with Soundstripe API.

2. Mubert - includes built in integration with Mubert API.
2. Banuba Music - includes built in integration with Banuba Music

3. Banuba Music - includes built in integration with Banuba Music

4. My Library - includes audio content available on the user's device
3. My Library - includes audio content available on the user's device

## Usage

Expand All @@ -39,28 +37,6 @@ private config = new FeaturesConfigBuilder()
.build();
```

### Mubert

[Mubert](https://mubert.com/) is a service that delivers Generative AI Music. Your users will be able to add audio tracks while recording or editing video content.

> [!NOTE]
> Please contact Mubert representatives to request keys.

Specify the instance of ```AudioBrowser``` in ```FeaturesConfig``` builder with Mubert source and params:

```typescript
private config = new FeaturesConfigBuilder()
.setAudioBrowser(AudioBrowser.fromSource({
source: AudioBrowserSource.mubert,
params: {
mubertLicence: ...,
mubertToken: ...
}
}))
...
.build();
```

### Banuba Music

Over 35 GB of royalty-free tracks available from within the Video Editor SDK. Your users could check them out through an inbuilt music browser and legally include them in their content.
Expand All @@ -71,7 +47,7 @@ Over 35 GB of royalty-free tracks available from within the Video Editor SDK. Yo

Specify the instance of ```AudioBrowser``` in ```FeaturesConfig``` builder with Banuba Music source and params:

```dart
```typescript
private config = new FeaturesConfigBuilder()
.setAudioBrowser(AudioBrowser.fromSource({
source: AudioBrowserSource.banubaMusic,
Expand Down