GetAudioLanguage
7/14/25Less than 1 minute
VideoClip.GetAudioLanguage(number audioTrackIdx)
Get the audio track language. Can be unknown.
Parameters:
| Name | Type | Description |
|---|---|---|
| audioTrackIdx | number | Index of the audio queried audio track. |
Returns:
| type | Description |
|---|---|
| string | The abbreviated name of the language. |
Usage
---@type VideoClip
local videoclip;
---@type number
local audioTrackIdx;
local val0 = videoclip.GetAudioLanguage(audioTrackIdx)
