v50

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

Get Video Audio Tracks

Gets the audio tracks for a video Dynamic Delivery only

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

Path parameters

account_idstring required

Video Cloud account ID.

video_idstring required

Video ID (specified as {video_id}}).

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"
  }
]