v50

latestOpenAPI 3.0.3raw.githubusercontent.com2025-01-2810050281.4 KB
Videos

Get Video Audio Track

Gets one audio track for a video by its ID Dynamic Delivery only

get/v1/accounts/{{account_id}}/videos/{{video_id}}/audio_tracks{audio_track_id}}

Path parameters

account_idstring required

Video Cloud account ID.

video_idstring required

Video ID (specified as {video_id}}).

audio_track_idstring required

the id for the audio track, formed as language_variant

Headers

Content-Typestring required

Content-Type: application/json

Authorizationstring required

Authorization: Bearer {access_token} - see Getting Access Tokens

Response

200

durationinteger

URL the duration of the audio track in milliseconds

encoding_ratesinteger[]

array of encoding rates for the audio track renditions in KBPS

idstring

ID for the audio track formed as language_variant

is_defaultboolean

Whether this is the default audio track

languagestring

language code for the audio track

variant'main' | 'alternate' | 'commentary' | 'dub' | 'descriptive'

the type of audio track (default can be set for the account by contacting Brightcove Support)

Example response

{
  "duration": 86053,
  "encoding_rates": [
    64000,
    96000,
    127000,
    192000
  ],
  "id": "en_alternate",
  "is_default": true,
  "language": "en-US",
  "variant": "main"
}