Sha256: 10d74496d886afd8e593f3d608defe02090bd9438a35552c8695cf34d7a4dbb6
Contents?: true
Size: 1.3 KB
Versions: 7
Compression:
Stored size: 1.3 KB
Contents
# MuxRuby::CreateTrackRequest ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **url** | **String** | | | | **type** | **String** | | | | **text_type** | **String** | | | | **language_code** | **String** | The language code value must be a valid BCP 47 specification compliant value. For example, en for English or en-US for the US version of English. | | | **name** | **String** | The name of the track containing a human-readable description. This value must be unique across all the text type and subtitles text type tracks. HLS manifest will associate subtitle text track with this value. For example, set the value to \"English\" for subtitles text track with language_code as en-US. If this parameter is not included, Mux will auto-populate based on the language_code value. | [optional] | | **closed_captions** | **Boolean** | Indicates the track provides Subtitles for the Deaf or Hard-of-hearing (SDH). | [optional] | | **passthrough** | **String** | Arbitrary metadata set for the track either when creating the asset or track. | [optional] | ## Example ```ruby require 'mux_ruby' instance = MuxRuby::CreateTrackRequest.new( url: null, type: null, text_type: null, language_code: null, name: null, closed_captions: null, passthrough: null ) ```
Version data entries
7 entries across 7 versions & 1 rubygems