You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/AssetNonStandardInputReasons.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Name | Type | Description | Notes
9
9
**video_gop_size** | **str** | 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]
10
10
**video_frame_rate** | **str** | 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]
11
11
**video_resolution** | **str** | 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]
12
+
**video_bitrate** | **str** | 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]
12
13
**pixel_aspect_ratio** | **str** | The video pixel aspect ratio of the input file. | [optional]
13
14
**video_edit_list** | **str** | Video Edit List reason indicates that the input file's video track contains a complex Edit Decision List. | [optional]
14
15
**audio_edit_list** | **str** | Audio Edit List reason indicates that the input file's audio track contains a complex Edit Decision List. | [optional]
**name** | **str** | A name for this live caption stream. | [optional]
7
-
**passthrough** | **str** | Arbitrary metadata set for the live stream caption track. Max 255 characters. | [optional]
8
-
**language_code** | **str** | The language of the caption stream. Value must be BCP 47 compliant. | [optional][default to 'en']
6
+
**name** | **str** | A name for this live stream subtitle track. | [optional]
7
+
**passthrough** | **str** | Arbitrary metadata set for the live stream subtitle track. Max 255 characters. | [optional]
8
+
**language_code** | **str** | The language of the subtitle stream. Value must be BCP 47 compliant. | [optional][default to 'en']
9
9
**language_channel** | **str** | CEA-608 caption channel to read data from. | [optional][default to 'cc1']
10
10
11
11
[[Back to Model list]](../README.md#documentation-for-models)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to README]](../README.md)
Copy file name to clipboardExpand all lines: docs/LiveStreamsApi.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -967,7 +967,7 @@ Name | Type | Description | Notes
967
967
### HTTP response details
968
968
| Status code | Description | Response headers |
969
969
|-------------|-------------|------------------|
970
-
**201** | Created | - |
970
+
**200** | OK | - |
971
971
972
972
[[Back to top]](#)[[Back to API list]](../README.md#documentation-for-api-endpoints)[[Back to Model list]](../README.md#documentation-for-models)[[Back to README]](../README.md)
"""Gets the video_bitrate of this AssetNonStandardInputReasons. # noqa: E501
225
+
226
+
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. # noqa: E501
227
+
228
+
:return: The video_bitrate of this AssetNonStandardInputReasons. # noqa: E501
229
+
:rtype: str
230
+
"""
231
+
returnself._video_bitrate
232
+
233
+
@video_bitrate.setter
234
+
defvideo_bitrate(self, video_bitrate):
235
+
"""Sets the video_bitrate of this AssetNonStandardInputReasons.
236
+
237
+
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. # noqa: E501
238
+
239
+
:param video_bitrate: The video_bitrate of this AssetNonStandardInputReasons. # noqa: E501
0 commit comments