* @see [Arbitrary audio tracks]https://github.com/mifi/editly#arbitrary-audio-tracks
| 187 | * @see [Arbitrary audio tracks]{@link https://github.com/mifi/editly#arbitrary-audio-tracks} |
| 188 | */ |
| 189 | interface AudioTrack { |
| 190 | |
| 191 | /** |
| 192 | * File path for this track. |
| 193 | */ |
| 194 | path: string; |
| 195 | |
| 196 | /** |
| 197 | * Relative volume for this track. |
| 198 | * |
| 199 | * @default 1 |
| 200 | */ |
| 201 | mixVolume?: number | string; |
| 202 | |
| 203 | /** |
| 204 | * Time value to cut source file from (in seconds). |
| 205 | * |
| 206 | * @default 0 |
| 207 | */ |
| 208 | cutFrom?: number; |
| 209 | |
| 210 | /** |
| 211 | * Time value to cut source file to (in seconds). |
| 212 | */ |
| 213 | cutTo?: number; |
| 214 | |
| 215 | /** |
| 216 | * How many seconds into video to start this audio track. |
| 217 | * |
| 218 | * @default 0 |
| 219 | */ |
| 220 | start?: number; |
| 221 | |
| 222 | } |
| 223 | |
| 224 | /** |
| 225 | * @see [Ken Burns parameters]{@link https://github.com/mifi/editly#ken-burns-parameters} |
nothing calls this directly
no outgoing calls
no test coverage detected