github.com/muxinc/mux-go@v1.1.1/model_live_stream_embedded_subtitle_settings.go (about) 1 // Mux Go - Copyright 2019 Mux Inc. 2 // NOTE: This file is auto generated. Do not edit this file manually. 3 4 package muxgo 5 6 type LiveStreamEmbeddedSubtitleSettings struct { 7 // A name for this live stream subtitle track. 8 Name string `json:"name,omitempty"` 9 // Arbitrary metadata set for the live stream subtitle track. Max 255 characters. 10 Passthrough string `json:"passthrough,omitempty"` 11 // The language of the subtitle stream. Value must be BCP 47 compliant. 12 LanguageCode string `json:"language_code,omitempty"` 13 // CEA-608 caption channel to read data from. 14 LanguageChannel string `json:"language_channel,omitempty"` 15 }