Skip to content

Commit 40822f0

Browse files
committed
updated to current
1 parent 82003fa commit 40822f0

40 files changed

+454
-312
lines changed

docs/AssetNonStandardInputReasons.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**video_codec** | **str** | The video codec used on the input file. For example, the input file encoded with `hevc` video codec is non-standard and the value of this parameter is `hevc`. | [optional]
88
**audio_codec** | **str** | The audio codec used on the input file. Non-AAC audio codecs are non-standard. | [optional]
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-
**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]
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 20 seconds. | [optional]
10+
**video_frame_rate** | **str** | The video frame rate of the input file. Video with average frames per second (fps) less than 5 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]
1111
**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]
1212
**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]
1313
**pixel_aspect_ratio** | **str** | The video pixel aspect ratio of the input file. | [optional]

docs/AssetResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | [**Asset**](.md) | | [optional]
6+
**data** | [**Asset**](Asset.md) | | [optional]
77

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

docs/AssetsApi.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ configuration = mux_python.Configuration(
5656
with mux_python.ApiClient(configuration) as api_client:
5757
# Create an instance of the API class
5858
api_instance = mux_python.AssetsApi(api_client)
59-
create_asset_request = {"input":"https://muxed.s3.amazonaws.com/leds.mp4","playback_policy":["public"]} # CreateAssetRequest |
59+
create_asset_request = {"input":[{"url":"https://muxed.s3.amazonaws.com/leds.mp4"}],"playback_policy":["public"]} # CreateAssetRequest |
6060

6161
try:
6262
# Create an asset
@@ -97,6 +97,8 @@ Name | Type | Description | Notes
9797
9898
Create a playback ID
9999

100+
Creates a playback ID that can be used to stream the asset to a viewer.
101+
100102
### Example
101103

102104
* Basic Authentication (accessToken):
@@ -170,6 +172,8 @@ Name | Type | Description | Notes
170172
171173
Create an asset track
172174

175+
Adds an asset track (for example, subtitles) to an asset.
176+
173177
### Example
174178

175179
* Basic Authentication (accessToken):
@@ -315,6 +319,8 @@ void (empty response body)
315319
316320
Delete a playback ID
317321

322+
Deletes a playback ID, rendering it nonfunctional for viewing an asset's video content. Please note that deleting the playback ID removes access to the underlying asset; a viewer who started playback before the playback ID was deleted may be able to watch the entire video for a limited duration.
323+
318324
### Example
319325

320326
* Basic Authentication (accessToken):
@@ -607,6 +613,8 @@ Name | Type | Description | Notes
607613
608614
Retrieve a playback ID
609615

616+
Retrieves information about the specified playback ID.
617+
610618
### Example
611619

612620
* Basic Authentication (accessToken):

docs/CreateLiveStreamRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**latency_mode** | **str** | Latency is the time from when the streamer transmits a frame of video to when you see it in the player. Set this as an alternative to setting low latency or reduced latency flags. The Low Latency value is a beta feature. Note: Reconnect windows are incompatible with Reduced Latency and Low Latency and will always be set to zero (0) seconds. Read more here: https://mux.com/blog/introducing-low-latency-live-streaming/ | [optional]
1515
**test** | **bool** | Marks the live stream as a test live stream when the value is set to true. A test live stream can help evaluate the Mux Video APIs without incurring any cost. There is no limit on number of test live streams created. Test live streams are watermarked with the Mux logo and limited to 5 minutes. The test live stream is disabled after the stream is active for 5 mins and the recorded asset also deleted after 24 hours. | [optional]
1616
**simulcast_targets** | [**list[CreateSimulcastTargetRequest]**](CreateSimulcastTargetRequest.md) | | [optional]
17+
**max_continuous_duration** | **int** | The time in seconds a live stream may be continuously active before being disconnected. Defaults to 12 hours. | [optional] [default to 43200]
1718

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

docs/CreatePlaybackIDResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | [**PlaybackID**](.md) | | [optional]
6+
**data** | [**PlaybackID**](PlaybackID.md) | | [optional]
77

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

docs/CreatePlaybackRestrictionRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**referrer** | [**ReferrerDomainRestriction**](.md) | | [optional]
6+
**referrer** | [**ReferrerDomainRestriction**](ReferrerDomainRestriction.md) | | [optional]
77

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

docs/CreateTrackResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | [**Track**](.md) | | [optional]
6+
**data** | [**Track**](Track.md) | | [optional]
77

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

docs/DirectUploadsApi.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,8 @@ Name | Type | Description | Notes
8989
9090
Create a new direct upload URL
9191

92+
Creates a new direct upload, through which video content can be uploaded for ingest to Mux.
93+
9294
### Example
9395

9496
* Basic Authentication (accessToken):
@@ -160,6 +162,8 @@ Name | Type | Description | Notes
160162
161163
Retrieve a single direct upload's info
162164

165+
Fetches information about a single direct upload in the current environment.
166+
163167
### Example
164168

165169
* Basic Authentication (accessToken):
@@ -231,6 +235,8 @@ Name | Type | Description | Notes
231235
232236
List direct uploads
233237

238+
Lists currently extant direct uploads in the current environment.
239+
234240
### Example
235241

236242
* Basic Authentication (accessToken):

docs/GetAssetPlaybackIDResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | [**PlaybackID**](.md) | | [optional]
6+
**data** | [**PlaybackID**](PlaybackID.md) | | [optional]
77

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

docs/GetLiveStreamPlaybackIDResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Properties
44
Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
6-
**data** | [**PlaybackID**](.md) | | [optional]
6+
**data** | [**PlaybackID**](PlaybackID.md) | | [optional]
77

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

0 commit comments

Comments
 (0)