Skip to content

Commit 08a4ab2

Browse files
committed
[release] 2.3.1
1 parent c8000c1 commit 08a4ab2

13 files changed

+23
-23
lines changed

docs/CreateLiveStreamRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Name | Type | Description | Notes
88
**reconnect_window** | **float** | When live streaming software disconnects from Mux, either intentionally or due to a drop in the network, the Reconnect Window is the time in seconds that Mux should wait for the streaming software to reconnect before considering the live stream finished and completing the recorded asset. Defaults to 60 seconds on the API if not specified. | [optional]
99
**passthrough** | **str** | | [optional]
1010
**audio_only** | **bool** | Force the live stream to only process the audio track when the value is set to true. Mux drops the video track if broadcasted. | [optional]
11-
**embedded_subtitles** | [**list[LiveStreamEmbeddedSubtitleSettings]**](LiveStreamEmbeddedSubtitleSettings.md) | Describe the subtitle contents of the incoming live stream. | [optional]
11+
**embedded_subtitles** | [**list[LiveStreamEmbeddedSubtitleSettings]**](LiveStreamEmbeddedSubtitleSettings.md) | Describe the embedded closed caption contents of the incoming live stream. | [optional]
1212
**reduced_latency** | **bool** | Latency is the time from when the streamer does something in real life to when you see it happen in the player. Set this if you want lower latency for your live stream. Note: Reconnect windows are incompatible with Reduced Latency and will always be set to zero (0) seconds. Read more here: https://mux.com/blog/reduced-latency-for-mux-live-streaming-now-available/ | [optional]
1313
**low_latency** | **bool** | Latency is the time from when the streamer does something in real life to when you see it happen 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. Note: Reconnect windows are incompatible with Low Latency and will always be set to zero (0) seconds. | [optional]
1414
**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]

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** | **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']
6+
**name** | **str** | A name for this live stream closed caption track. | [optional]
7+
**passthrough** | **str** | Arbitrary metadata set for the live stream closed caption track. Max 255 characters. | [optional]
8+
**language_code** | **str** | The language of the closed caption stream. Value must be BCP 47 compliant. | [optional] [default to 'en']
99
**language_channel** | **str** | CEA-608 caption channel to read data from. | [optional] [default to '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)

docs/LiveStreamsApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1049,7 +1049,7 @@ Name | Type | Description | Notes
10491049
10501050
Update a live stream's embedded subtitles
10511051

1052-
Configures a live stream to receive embedded subtitles including captions and translations.
1052+
Configures a live stream to receive embedded closed captions. The resulting Asset's subtitle text track will have `closed_captions: true` set.
10531053

10541054
### Example
10551055

docs/UpdateLiveStreamEmbeddedSubtitlesRequest.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-
**embedded_subtitles** | [**list[LiveStreamEmbeddedSubtitleSettings]**](LiveStreamEmbeddedSubtitleSettings.md) | Describe the embedded subtitle contents of the incoming live stream. | [optional]
6+
**embedded_subtitles** | [**list[LiveStreamEmbeddedSubtitleSettings]**](LiveStreamEmbeddedSubtitleSettings.md) | Describe the embedded closed caption contents of the incoming live stream. | [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

gen/generator-config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
"!!source": "https://github.com/OpenAPITools/openapi-generator/blob/master/docs/generators/python.md",
33
"packageName": "mux_python",
44
"projectName": "mux_python",
5-
"packageVersion": "2.3.0"
5+
"packageVersion": "2.3.1"
66
}

mux_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from __future__ import absolute_import
1717

18-
__version__ = "2.3.0"
18+
__version__ = "2.3.1"
1919

2020
# import apis into sdk package
2121
from mux_python.api.assets_api import AssetsApi

mux_python/api/live_streams_api.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1988,7 +1988,7 @@ def signal_live_stream_complete_with_http_info(self, live_stream_id, **kwargs):
19881988
def update_live_stream_embedded_subtitles(self, live_stream_id, update_live_stream_embedded_subtitles_request, **kwargs): # noqa: E501
19891989
"""Update a live stream's embedded subtitles # noqa: E501
19901990
1991-
Configures a live stream to receive embedded subtitles including captions and translations. # noqa: E501
1991+
Configures a live stream to receive embedded closed captions. The resulting Asset's subtitle text track will have `closed_captions: true` set. # noqa: E501
19921992
This method makes a synchronous HTTP request by default. To make an
19931993
asynchronous HTTP request, please pass async_req=True
19941994
@@ -2020,7 +2020,7 @@ def update_live_stream_embedded_subtitles(self, live_stream_id, update_live_stre
20202020
def update_live_stream_embedded_subtitles_with_http_info(self, live_stream_id, update_live_stream_embedded_subtitles_request, **kwargs): # noqa: E501
20212021
"""Update a live stream's embedded subtitles # noqa: E501
20222022
2023-
Configures a live stream to receive embedded subtitles including captions and translations. # noqa: E501
2023+
Configures a live stream to receive embedded closed captions. The resulting Asset's subtitle text track will have `closed_captions: true` set. # noqa: E501
20242024
This method makes a synchronous HTTP request by default. To make an
20252025
asynchronous HTTP request, please pass async_req=True
20262026

mux_python/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def __init__(self, configuration=None, header_name=None, header_value=None,
7979
self.default_headers[header_name] = header_value
8080
self.cookie = cookie
8181
# Set default User-Agent.
82-
self.user_agent = 'OpenAPI-Generator/2.3.0/python'
82+
self.user_agent = 'OpenAPI-Generator/2.3.1/python'
8383
self.client_side_validation = configuration.client_side_validation
8484

8585
def __enter__(self):

mux_python/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ def to_debug_report(self):
406406
"OS: {env}\n"\
407407
"Python Version: {pyversion}\n"\
408408
"Version of the API: v1\n"\
409-
"SDK Package Version: 2.3.0".\
409+
"SDK Package Version: 2.3.1".\
410410
format(env=sys.platform, pyversion=sys.version)
411411

412412
def get_host_settings(self):

mux_python/models/create_live_stream_request.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ def audio_only(self, audio_only):
217217
def embedded_subtitles(self):
218218
"""Gets the embedded_subtitles of this CreateLiveStreamRequest. # noqa: E501
219219
220-
Describe the subtitle contents of the incoming live stream. # noqa: E501
220+
Describe the embedded closed caption contents of the incoming live stream. # noqa: E501
221221
222222
:return: The embedded_subtitles of this CreateLiveStreamRequest. # noqa: E501
223223
:rtype: list[LiveStreamEmbeddedSubtitleSettings]
@@ -228,7 +228,7 @@ def embedded_subtitles(self):
228228
def embedded_subtitles(self, embedded_subtitles):
229229
"""Sets the embedded_subtitles of this CreateLiveStreamRequest.
230230
231-
Describe the subtitle contents of the incoming live stream. # noqa: E501
231+
Describe the embedded closed caption contents of the incoming live stream. # noqa: E501
232232
233233
:param embedded_subtitles: The embedded_subtitles of this CreateLiveStreamRequest. # noqa: E501
234234
:type embedded_subtitles: list[LiveStreamEmbeddedSubtitleSettings]

0 commit comments

Comments
 (0)