Skip to content
Start here

Audio Tracks

resource cloudflare_stream_audio_track

required Expand Collapse
account_id: String

The account identifier tag.

identifier: String

A Cloudflare-generated unique identifier for a media item.

optional Expand Collapse
audio_identifier?: String

The unique identifier for an additional audio track.

label?: String

A string to uniquely identify the track amongst other audio track labels for the specified video.

default?: Bool

Denotes whether the audio track will be played by default in a player.

computed Expand Collapse
status: String

Specifies the processing status of the video.

uid: String

A Cloudflare-generated unique identifier for a media item.

cloudflare_stream_audio_track

resource "cloudflare_stream_audio_track" "example_stream_audio_track" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  identifier = "ea95132c15732412d22c1476fa83f27a"
  audio_identifier = "ea95132c15732412d22c1476fa83f27a"
  default = true
  label = "director commentary"
}

data cloudflare_stream_audio_track

required Expand Collapse
account_id: String

The account identifier tag.

identifier: String

A Cloudflare-generated unique identifier for a media item.

computed Expand Collapse
default: Bool

Denotes whether the audio track will be played by default in a player.

label: String

A string to uniquely identify the track amongst other audio track labels for the specified video.

status: String

Specifies the processing status of the video.

uid: String

A Cloudflare-generated unique identifier for a media item.

cloudflare_stream_audio_track

data "cloudflare_stream_audio_track" "example_stream_audio_track" {
  account_id = "023e105f4ecef8ad9ca31a8372d0c353"
  identifier = "ea95132c15732412d22c1476fa83f27a"
}