Skip to content

Commit ef90680

Browse files
authored
v3.11.5 (#73)
* regenerate * minor version bump * update template for urllib3 to not use deprecated method
1 parent d896eab commit ef90680

File tree

128 files changed

+4836
-204
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+4836
-204
lines changed

.openapi-generator/FILES

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ docs/CreateTrackRequest.md
3030
docs/CreateTrackResponse.md
3131
docs/CreateTranscriptionVocabularyRequest.md
3232
docs/CreateUploadRequest.md
33+
docs/CreateWebInputRequest.md
3334
docs/DeliveryReport.md
3435
docs/DeliveryReportDeliveredSecondsByResolution.md
3536
docs/DeliveryUsageApi.md
@@ -74,9 +75,11 @@ docs/InputSettings.md
7475
docs/InputSettingsOverlaySettings.md
7576
docs/InputTrack.md
7677
docs/Insight.md
78+
docs/LaunchWebInputResponse.md
7779
docs/ListAllMetricValuesResponse.md
7880
docs/ListAssetsResponse.md
7981
docs/ListBreakdownValuesResponse.md
82+
docs/ListBreakdownValuesResponseMeta.md
8083
docs/ListDeliveryUsageResponse.md
8184
docs/ListDimensionValuesResponse.md
8285
docs/ListDimensionsResponse.md
@@ -101,6 +104,7 @@ docs/ListTranscriptionVocabulariesResponse.md
101104
docs/ListUploadsResponse.md
102105
docs/ListVideoViewExportsResponse.md
103106
docs/ListVideoViewsResponse.md
107+
docs/ListWebInputsResponse.md
104108
docs/LiveStream.md
105109
docs/LiveStreamEmbeddedSubtitleSettings.md
106110
docs/LiveStreamGeneratedSubtitleSettings.md
@@ -132,7 +136,9 @@ docs/RealTimeHistogramTimeseriesBucketValues.md
132136
docs/RealTimeHistogramTimeseriesDatapoint.md
133137
docs/RealTimeTimeseriesDatapoint.md
134138
docs/ReferrerDomainRestriction.md
139+
docs/ReloadWebInputResponse.md
135140
docs/Score.md
141+
docs/ShutdownWebInputResponse.md
136142
docs/SignalLiveStreamCompleteResponse.md
137143
docs/SigningKey.md
138144
docs/SigningKeyResponse.md
@@ -159,13 +165,17 @@ docs/UpdateLiveStreamGeneratedSubtitlesRequest.md
159165
docs/UpdateLiveStreamRequest.md
160166
docs/UpdateReferrerDomainRestrictionRequest.md
161167
docs/UpdateTranscriptionVocabularyRequest.md
168+
docs/UpdateWebInputUrlRequest.md
162169
docs/Upload.md
163170
docs/UploadError.md
164171
docs/UploadResponse.md
165172
docs/VideoView.md
166173
docs/VideoViewEvent.md
167174
docs/VideoViewResponse.md
168175
docs/VideoViewsApi.md
176+
docs/WebInput.md
177+
docs/WebInputResponse.md
178+
docs/WebInputsApi.md
169179
mux_python/__init__.py
170180
mux_python/api/__init__.py
171181
mux_python/api/assets_api.py
@@ -187,6 +197,7 @@ mux_python/api/spaces_api.py
187197
mux_python/api/transcription_vocabularies_api.py
188198
mux_python/api/url_signing_keys_api.py
189199
mux_python/api/video_views_api.py
200+
mux_python/api/web_inputs_api.py
190201
mux_python/api_client.py
191202
mux_python/configuration.py
192203
mux_python/exceptions.py
@@ -219,6 +230,7 @@ mux_python/models/create_track_request.py
219230
mux_python/models/create_track_response.py
220231
mux_python/models/create_transcription_vocabulary_request.py
221232
mux_python/models/create_upload_request.py
233+
mux_python/models/create_web_input_request.py
222234
mux_python/models/delivery_report.py
223235
mux_python/models/delivery_report_delivered_seconds_by_resolution.py
224236
mux_python/models/dimension_value.py
@@ -256,9 +268,11 @@ mux_python/models/input_settings.py
256268
mux_python/models/input_settings_overlay_settings.py
257269
mux_python/models/input_track.py
258270
mux_python/models/insight.py
271+
mux_python/models/launch_web_input_response.py
259272
mux_python/models/list_all_metric_values_response.py
260273
mux_python/models/list_assets_response.py
261274
mux_python/models/list_breakdown_values_response.py
275+
mux_python/models/list_breakdown_values_response_meta.py
262276
mux_python/models/list_delivery_usage_response.py
263277
mux_python/models/list_dimension_values_response.py
264278
mux_python/models/list_dimensions_response.py
@@ -283,6 +297,7 @@ mux_python/models/list_transcription_vocabularies_response.py
283297
mux_python/models/list_uploads_response.py
284298
mux_python/models/list_video_view_exports_response.py
285299
mux_python/models/list_video_views_response.py
300+
mux_python/models/list_web_inputs_response.py
286301
mux_python/models/live_stream.py
287302
mux_python/models/live_stream_embedded_subtitle_settings.py
288303
mux_python/models/live_stream_generated_subtitle_settings.py
@@ -308,7 +323,9 @@ mux_python/models/real_time_histogram_timeseries_bucket_values.py
308323
mux_python/models/real_time_histogram_timeseries_datapoint.py
309324
mux_python/models/real_time_timeseries_datapoint.py
310325
mux_python/models/referrer_domain_restriction.py
326+
mux_python/models/reload_web_input_response.py
311327
mux_python/models/score.py
328+
mux_python/models/shutdown_web_input_response.py
312329
mux_python/models/signal_live_stream_complete_response.py
313330
mux_python/models/signing_key.py
314331
mux_python/models/signing_key_response.py
@@ -331,12 +348,15 @@ mux_python/models/update_live_stream_generated_subtitles_request.py
331348
mux_python/models/update_live_stream_request.py
332349
mux_python/models/update_referrer_domain_restriction_request.py
333350
mux_python/models/update_transcription_vocabulary_request.py
351+
mux_python/models/update_web_input_url_request.py
334352
mux_python/models/upload.py
335353
mux_python/models/upload_error.py
336354
mux_python/models/upload_response.py
337355
mux_python/models/video_view.py
338356
mux_python/models/video_view_event.py
339357
mux_python/models/video_view_response.py
358+
mux_python/models/web_input.py
359+
mux_python/models/web_input_response.py
340360
mux_python/rest.py
341361
requirements.txt
342362
setup.cfg

docs/Asset.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ Name | Type | Description | Notes
1010
**max_stored_resolution** | **str** | This field is deprecated. Please use `resolution_tier` instead. The maximum resolution that has been stored for the asset. The asset may be delivered at lower resolutions depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. | [optional]
1111
**resolution_tier** | **str** | The resolution tier that the asset was ingested at, affecting billing for ingest & storage. This field also represents the highest resolution tier that the content can be delivered at, however the actual resolution may be lower depending on the device, bandwidth, and exact resolution of the uploaded asset. | [optional]
1212
**max_resolution_tier** | **str** | Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`. | [optional]
13-
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) | [optional]
13+
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/use-encoding-tiers) | [optional]
1414
**max_stored_frame_rate** | **float** | The maximum frame rate that has been stored for the asset. The asset may be delivered at lower frame rates depending on the device and bandwidth, however it cannot be delivered at a higher value than is stored. This field may return -1 if the frame rate of the input cannot be reliably determined. | [optional]
1515
**aspect_ratio** | **str** | The aspect ratio of the asset in the form of `width:height`, for example `16:9`. | [optional]
16-
**playback_ids** | [**list[PlaybackID]**](PlaybackID.md) | An array of Playback ID objects. Use these to create HLS playback URLs. See [Play your videos](https://docs.mux.com/guides/video/play-your-videos) for more details. | [optional]
16+
**playback_ids** | [**list[PlaybackID]**](PlaybackID.md) | An array of Playback ID objects. Use these to create HLS playback URLs. See [Play your videos](https://docs.mux.com/guides/play-your-videos) for more details. | [optional]
1717
**tracks** | [**list[Track]**](Track.md) | The individual media tracks that make up an asset. | [optional]
1818
**errors** | [**AssetErrors**](AssetErrors.md) | | [optional]
1919
**per_title_encode** | **bool** | | [optional]

docs/AssetMaster.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AssetMaster
22

3-
An object containing the current status of Master Access and the link to the Master MP4 file when ready. This object does not exist if `master_acess` is set to `none` and when the temporary URL expires.
3+
An object containing the current status of Master Access and the link to the Master MP4 file when ready. This object does not exist if `master_access` is set to `none` and when the temporary URL expires.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------

docs/AssetNonStandardInputReasons.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AssetNonStandardInputReasons
22

3-
An object containing one or more reasons the input file is non-standard. See [the guide on minimizing processing time](https://docs.mux.com/guides/video/minimize-processing-time) for more information on what a standard input is defined as. This object only exists on on-demand assets that have non-standard inputs, so if missing you can assume the input qualifies as standard.
3+
An object containing one or more reasons the input file is non-standard. See [the guide on minimizing processing time](https://docs.mux.com/guides/minimize-processing-time) for more information on what a standard input is defined as. This object only exists on on-demand assets that have non-standard inputs, so if missing you can assume the input qualifies as standard.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------

docs/AssetStaticRenditions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# AssetStaticRenditions
22

3-
An object containing the current status of any static renditions (mp4s). The object does not exist if no static renditions have been requested. See [Download your videos](https://docs.mux.com/guides/video/download-your-videos) for more information.
3+
An object containing the current status of any static renditions (mp4s). The object does not exist if no static renditions have been requested. See [Download your videos](https://docs.mux.com/guides/enable-static-mp4-renditions) for more information.
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------

docs/BreakdownValue.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
**views** | **int** | | [optional]
77
**value** | **float** | | [optional]
88
**total_watch_time** | **int** | | [optional]
9+
**total_playing_time** | **int** | | [optional]
910
**negative_impact** | **int** | | [optional]
1011
**field** | **str** | | [optional]
1112

docs/CreateAssetRequest.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Name | Type | Description | Notes
77
**playback_policy** | [**list[PlaybackPolicy]**](PlaybackPolicy.md) | An array of playback policy names that you want applied to this asset and available through `playback_ids`. Options include: `\"public\"` (anyone with the playback URL can stream the asset). And `\"signed\"` (an additional access token is required to play the asset). If no playback_policy is set, the asset will have no playback IDs and will therefore not be playable. For simplicity, a single string name can be used in place of the array in the case of only one playback policy. | [optional]
88
**per_title_encode** | **bool** | | [optional]
99
**passthrough** | **str** | Arbitrary user-supplied metadata that will be included in the asset details and related webhooks. Can be used to store your own ID for a video along with the asset. **Max: 255 characters**. | [optional]
10-
**mp4_support** | **str** | Specify what level (if any) of support for mp4 playback. In most cases you should use our default HLS-based streaming playback ({playback_id}.m3u8) which can automatically adjust to viewers' connection speeds, but an mp4 can be useful for some legacy devices or downloading for offline playback. See the [Download your videos guide](/guides/video/download-your-videos) for more information. | [optional]
10+
**mp4_support** | **str** | Specify what level (if any) of support for mp4 playback. In most cases you should use our default HLS-based streaming playback ({playback_id}.m3u8) which can automatically adjust to viewers' connection speeds, but an mp4 can be useful for some legacy devices or downloading for offline playback. See the [Download your videos guide](https://docs.mux.com/guides/enable-static-mp4-renditions) for more information. | [optional]
1111
**normalize_audio** | **bool** | Normalize the audio track loudness level. This parameter is only applicable to on-demand (not live) assets. | [optional] [default to False]
12-
**master_access** | **str** | Specify what level (if any) of support for master access. Master access can be enabled temporarily for your asset to be downloaded. See the [Download your videos guide](/guides/video/download-your-videos) for more information. | [optional]
12+
**master_access** | **str** | Specify what level (if any) of support for master access. Master access can be enabled temporarily for your asset to be downloaded. See the [Download your videos guide](https://docs.mux.com/guides/enable-static-mp4-renditions) for more information. | [optional]
1313
**test** | **bool** | Marks the asset as a test asset when the value is set to true. A Test asset can help evaluate the Mux Video APIs without incurring any cost. There is no limit on number of test assets created. Test asset are watermarked with the Mux logo, limited to 10 seconds, deleted after 24 hrs. | [optional]
1414
**max_resolution_tier** | **str** | Max resolution tier can be used to control the maximum `resolution_tier` your asset is encoded, stored, and streamed at. If not set, this defaults to `1080p`. | [optional]
15-
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/video/use-encoding-tiers) | [optional]
15+
**encoding_tier** | **str** | The encoding tier informs the cost, quality, and available platform features for the asset. By default the `smart` encoding tier is used. [See the guide for more details.](https://docs.mux.com/guides/use-encoding-tiers) | [optional]
1616

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

docs/CreateLiveStreamRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Name | Type | Description | Notes
1414
**generated_subtitles** | [**list[LiveStreamGeneratedSubtitleSettings]**](LiveStreamGeneratedSubtitleSettings.md) | Configure the incoming live stream to include subtitles created with automatic speech recognition. Each Asset created from a live stream with `generated_subtitles` configured will automatically receive two text tracks. The first of these will have a `text_source` value of `generated_live`, and will be available with `ready` status as soon as the stream is live. The second text track will have a `text_source` value of `generated_live_final` and will contain subtitles with improved accuracy, timing, and formatting. However, `generated_live_final` tracks will not be available in `ready` status until the live stream ends. If an Asset has both `generated_live` and `generated_live_final` tracks that are `ready`, then only the `generated_live_final` track will be included during playback. | [optional]
1515
**reduced_latency** | **bool** | This field is deprecated. Please use `latency_mode` instead. Latency is the time from when the streamer transmits a frame of video to when you see it in the player. Set this if you want lower latency for your live stream. Read more here: https://mux.com/blog/reduced-latency-for-mux-live-streaming-now-available/ | [optional]
1616
**low_latency** | **bool** | This field is deprecated. Please use `latency_mode` instead. Latency is the time from when the streamer transmits a frame of video to when you see it in the player. Setting this option will enable compatibility with the LL-HLS specification for low-latency streaming. This typically has lower latency than Reduced Latency streams, and cannot be combined with Reduced Latency. | [optional]
17-
**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. Read more here: https://mux.com/blog/introducing-low-latency-live-streaming/ | [optional]
17+
**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. | [optional]
1818
**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]
1919
**simulcast_targets** | [**list[CreateSimulcastTargetRequest]**](CreateSimulcastTargetRequest.md) | | [optional]
2020
**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]

docs/CreateSimulcastTargetRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**passthrough** | **str** | Arbitrary user-supplied metadata set by you when creating a simulcast target. | [optional]
77
**stream_key** | **str** | Stream Key represents a stream identifier on the third party live streaming service to send the parent live stream to. | [optional]
8-
**url** | **str** | RTMP hostname including application name for the third party live streaming service. Example: `rtmp://live.example.com/app`. |
8+
**url** | **str** | RTMP hostname including application name for the third party live streaming service. Example: `rtmp://live.example.com/app`. | [optional]
99

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

docs/CreateUploadRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**timeout** | **int** | Max time in seconds for the signed upload URL to be valid. If a successful upload has not occurred before the timeout limit, the direct upload is marked `timed_out` | [optional] [default to 3600]
77
**cors_origin** | **str** | If the upload URL will be used in a browser, you must specify the origin in order for the signed URL to have the correct CORS headers. | [optional]
8-
**new_asset_settings** | [**CreateAssetRequest**](CreateAssetRequest.md) | |
8+
**new_asset_settings** | [**CreateAssetRequest**](CreateAssetRequest.md) | | [optional]
99
**test** | **bool** | | [optional]
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)

0 commit comments

Comments
 (0)