Skip to content

Commit 1d98f27

Browse files
committed
[release] 1.1.0 take two
1 parent a38a5b7 commit 1d98f27

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

docs/AssetNonStandardInputReasons.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
88
**VideoGopSize** | **string** | The video key frame Interval (also called as Group of Picture or GOP) of the input file is `high`. This parameter is present when the gop is greater than 10 seconds. | [optional]
99
**VideoFrameRate** | **string** | The video frame rate of the input file. Video with average frames per second (fps) less than 10 or greater than 120 is non-standard. A `-1` frame rate value indicates Mux could not determine the frame rate of the video track. | [optional]
1010
**VideoResolution** | **string** | The video resolution of the input file. Video resolution higher than 2048 pixels on any one dimension (height or width) is considered non-standard, The resolution value is presented as `width` x `height` in pixels. | [optional]
11+
**VideoBitrate** | **string** | The video bitrate of the input file is `high`. This parameter is present when the average bitrate of any key frame interval (also known as Group of Pictures or GOP) is higher than what's considered standard which typically is 16 Mbps. | [optional]
1112
**PixelAspectRatio** | **string** | The video pixel aspect ratio of the input file. | [optional]
1213
**VideoEditList** | **string** | Video Edit List reason indicates that the input file's video track contains a complex Edit Decision List. | [optional]
1314
**AudioEditList** | **string** | Audio Edit List reason indicates that the input file's audio track contains a complex Edit Decision List. | [optional]

docs/LiveStreamEmbeddedSubtitleSettings.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**Name** | **string** | A name for this live caption stream. | [optional]
7-
**Passthrough** | **string** | Arbitrary metadata set for the live stream caption track. Max 255 characters. | [optional]
8-
**LanguageCode** | **string** | The language of the caption stream. Value must be BCP 47 compliant. | [optional] [default to en]
6+
**Name** | **string** | A name for this live stream subtitle track. | [optional]
7+
**Passthrough** | **string** | Arbitrary metadata set for the live stream subtitle track. Max 255 characters. | [optional]
8+
**LanguageCode** | **string** | The language of the subtitle stream. Value must be BCP 47 compliant. | [optional] [default to en]
99
**LanguageChannel** | **string** | CEA-608 caption channel to read data from. | [optional] [default to LANGUAGE_CHANNEL_CC1]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

model_asset_non_standard_input_reasons.go

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ type AssetNonStandardInputReasons struct {
1515
VideoFrameRate string `json:"video_frame_rate,omitempty"`
1616
// The video resolution of the input file. Video resolution higher than 2048 pixels on any one dimension (height or width) is considered non-standard, The resolution value is presented as `width` x `height` in pixels.
1717
VideoResolution string `json:"video_resolution,omitempty"`
18+
// The video bitrate of the input file is `high`. This parameter is present when the average bitrate of any key frame interval (also known as Group of Pictures or GOP) is higher than what's considered standard which typically is 16 Mbps.
19+
VideoBitrate string `json:"video_bitrate,omitempty"`
1820
// The video pixel aspect ratio of the input file.
1921
PixelAspectRatio string `json:"pixel_aspect_ratio,omitempty"`
2022
// Video Edit List reason indicates that the input file's video track contains a complex Edit Decision List.

model_live_stream_embedded_subtitle_settings.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44
package muxgo
55

66
type LiveStreamEmbeddedSubtitleSettings struct {
7-
// A name for this live caption stream.
7+
// A name for this live stream subtitle track.
88
Name string `json:"name,omitempty"`
9-
// Arbitrary metadata set for the live stream caption track. Max 255 characters.
9+
// Arbitrary metadata set for the live stream subtitle track. Max 255 characters.
1010
Passthrough string `json:"passthrough,omitempty"`
11-
// The language of the caption stream. Value must be BCP 47 compliant.
11+
// The language of the subtitle stream. Value must be BCP 47 compliant.
1212
LanguageCode string `json:"language_code,omitempty"`
1313
// CEA-608 caption channel to read data from.
1414
LanguageChannel string `json:"language_channel,omitempty"`

0 commit comments

Comments
 (0)