Reference
?

mergeAudio

Merge one or more clips into a single audio file.
mindstudio.mergeAudio({ mp3Urls }) → Result

Merge one or more clips into a single audio file.

Parameters
mp3Urls
string[]
RequiredURLs of the MP3 audio clips to merge in order
fileMetadata
object
FFmpeg MP3 metadata key-value pairs to embed in the output file
albumArtUrl
string
URL of an image to embed as album art in the output file
intermediateAsset
boolean
When true, the asset is created but hidden from the user's gallery (tagged as intermediate)
Call from a method
import { mindstudio } from '@mindstudio-ai/agent';

const result = await mindstudio.mergeAudio({
  mp3Urls: /* ... */
});