Prop | Type | Required | Example | Value Range | Description |
---|---|---|---|---|---|
externalUrl | string | false | - | - | The URL of the image file from an external source. |
remoteUrl | string | false | - | - | The URL of the image file from Chillin cloud storage. |
ext | string | true | - | - | The file extension of the audio (e.g., "mp3", "wav"). |
startInSource | number | true | - | - | The start time of the audio clip in the source file, in seconds. |
endInSource | number | true | - | - | The end time of the audio clip in the source file, in seconds. |
volume | number | true | - | 0 - 1 | The volume level of the audio element. 1 represents full volume, and 0 represents muted. |
Note: At least one of externalUrl or remoteUrl must be accessible. While
startInSource
andendInSource
allow you to use only a portion of the audio clip in the timeline. Thevolume
field enables volume adjustments for precise sound control.
1{
2 "id": "9bf3d1d3-a961-4457-9dd2-2def3109680a",
3 "type": "Audio",
4 "start": 0,
5 "duration": 131.160813,
6 "trackIndex": 0,
7 "remoteUrl": "",
8 "ext": "Flow",
9 "startInSource": 0,
10 "endInSource": 131.160813,
11 "volume": 1
12}
13