From 6210be5927bab2b1be7e03e8a4eb348a17e43010 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Mon, 10 Nov 2025 10:50:59 +0800 Subject: [PATCH 01/19] Update media.wsdl MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Added AddTTSAudioClip request and AddTTSAudioClip response for sending a text and its TTS configuration to the device(1621-1652)(2036-2041)(2418-2422)(2935-2943). 2. Added complex types "TTS Audio" (1465-1485)for TTSConfiguration to support TTS function. It includes parameters Content, Language, VoiceType. 3. updated AudioClipCapabilities with TTSCapabilities(177-181), and added complex types for TTSCapabilities(201-220)to indicate the device supports TTS function and its corresponding configuration. complex types TTSCapabilities includes MaxContentLength, TTSLanguage and TTSVoiceType. 4. Added simpleType TTSLanguage(220-231) and TTSVoiceType(232-238). --- wsdl/ver20/media/wsdl/media.wsdl | 126 ++++++++++++++++++++++++++++++- 1 file changed, 124 insertions(+), 2 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 3a9729588..a086dd718 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -174,6 +174,11 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + + + Indicates device has TTS capability. + + @@ -194,6 +199,46 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + + + + + Indicates the maximum length of content of a text for device to convert to an audio clip. + + + + + Indicates what language(s) the device supports for TTS funciton. + + + + + Indicates the voice type for TTS funciton. + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1417,8 +1462,31 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + + + + + + + Content of the audio clip. + + + + + Language for the audio clip content, it is the same as the language during playback. + + + + + The voice type of audio clip playback. + + + + + + + @@ -1551,7 +1619,40 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + + + + + + + Optional token associated with the audio clip. + + + + + Audio clip configuration to add. + + + + + The configuration for the TTS audio clip to add. + + + + + + + + + + + Unique token of the TTS audio clip to be uploaded. + + + + + + @@ -1934,6 +2035,12 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + + + + + + @@ -2310,6 +2417,12 @@ image will be updated automatically and independent from calls to GetSnapshotUri + + This operation sends a text and its configuartion to device that supports TTS function, so that device could convert the text into an audio clip and play it according to audio clip Configuration and TTS Configuration. + + + + This operation modifies the existing audio clip configuration on the device. @@ -2821,6 +2934,15 @@ image will be updated automatically and independent from calls to GetSnapshotUri + + + + + + + + + From d2607c705d84333dcc0e74903b74151d4bf9eceb Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Mon, 10 Nov 2025 11:29:28 +0800 Subject: [PATCH 02/19] Update Media2.xml MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 1. Added detailed descriptions for AddTTSAudioClip operations, explaining their purpose, parameters, and responses.(2359-2416) 2. updated audio clip Capabilities with TTSCapabilities.(2698-2700) --- doc/Media2.xml | 64 +++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 63 insertions(+), 1 deletion(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index 3ac5f4337..91ac3649d 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2355,7 +2355,65 @@ When the size of the audio clip upload exceeds the MaxAudioClipSize parameter in KB, the device should return an HTTP 413, Request Entity Too Large error to the client. - + +
+ AddTTSAudioClip + This operation adds a text and its configuartion to the device so that device could convert the text to an audio clip and play it based on the configuration. + The response to the command includes a unique token for this converted audio clip. + If the device is unable to support certain language,then returns error message. + + + request + + Token - optional[tt:ReferenceToken] + Optional token associated with the audio clip. + Configuration - + [tr2:AudioClip] + Audio clip configuration to add. + TTSConfiguration - + [tr2:TTSAudio] + TTS configuration to add. + + + + response + + Token - [tt:ReferenceToken] + Unique token of the TTS audio clip to be uploaded. + + + + faults + + env:Receiver - ter:Action - ter:MaxAudioClipLimit + The maximum number of audio clip configurations supported by the device has been reached. + env:Sender - ter:InvalidArgVal - ter:InvalidConfig + The configuration parameters are not possible to set. + env:Sender - ter:InvalidArgVal - ter:InvalidLanguage + The language is not supported. + + + + access class + + WRITE_SYSTEM + + + + + Note: Audio clip uploads to the device can fail in the following scenarios, and a specific HTTP error code should be returned to the client when an upload fails. + + + When the upload URL has expired, the device should return an HTTP 410 error to the client. + + + When the format of the audio clip upload does not match the Type parameter in the audio clip configuration, the device should return an HTTP 415 Unsupported Media Type error to the client. + + + When the size of the audio clip upload exceeds the MaxAudioClipSize parameter in KB, the device should return an HTTP 413, Request Entity Too Large error to the client. + + +
SetAudioClip This operation modifies the existing audio clip configuration on the device. @@ -2637,6 +2695,10 @@ The following audio clip Capabilities are available: + + TTSCapabilities + Indicates device supports TTS function and corresponding configuration. + MaxAudioClipLimit Indicates the maximum number of audio clips that can be uploaded to the device. From 043366eb1947d88ce17266f91234e54314c355b0 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Mon, 10 Nov 2025 15:35:48 +0800 Subject: [PATCH 03/19] Update media.wsdl update code line information for TTS function --- wsdl/ver20/media/wsdl/media.wsdl | 78 ++++++++++++++++++-------------- 1 file changed, 44 insertions(+), 34 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index a086dd718..5a12208ae 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -174,11 +174,13 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + Indicates device has TTS capability. + @@ -199,26 +201,29 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + - - - Indicates the maximum length of content of a text for device to convert to an audio clip. - - - - - Indicates what language(s) the device supports for TTS funciton. - - - - - Indicates the voice type for TTS funciton. - - + + + + Indicates the maximum length of content of a text for device to convert to an audio clip. + + + + + Indicates what language(s) the device supports for TTS funciton. + + + + + Indicates the voice type for TTS funciton. + + + - + @@ -231,14 +236,15 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + - + + @@ -1462,31 +1468,30 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - - + - + - Content of the audio clip. + Content of the audio clip. - - + + - Language for the audio clip content, it is the same as the language during playback. + Language for the audio clip content, it is the same as the language during playback. - - + + - The voice type of audio clip playback. + The voice type of audio clip playback. - + - - + + @@ -1619,7 +1624,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + @@ -1652,7 +1657,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + @@ -2035,12 +2040,14 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + + @@ -2417,12 +2424,13 @@ image will be updated automatically and independent from calls to GetSnapshotUri + This operation sends a text and its configuartion to device that supports TTS function, so that device could convert the text into an audio clip and play it according to audio clip Configuration and TTS Configuration. - + This operation modifies the existing audio clip configuration on the device. @@ -2934,6 +2942,7 @@ image will be updated automatically and independent from calls to GetSnapshotUri + @@ -2943,6 +2952,7 @@ image will be updated automatically and independent from calls to GetSnapshotUri + From 43f83bf547cd96a15eb317faeb6ed23f65015f77 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Tue, 11 Nov 2025 21:13:33 +0800 Subject: [PATCH 04/19] Update media.wsdl correct some editorial errors --- wsdl/ver20/media/wsdl/media.wsdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 5a12208ae..5ee00b771 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -213,7 +213,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - Indicates what language(s) the device supports for TTS funciton. + Indicates what language(s) the device supports for TTS function. From ea5b5ddf7bd20a2e4295b899ea7a84cfc1d064d6 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Mon, 1 Dec 2025 17:08:37 +0800 Subject: [PATCH 05/19] Update Media2.xml Updated the description of the AddTTSAudioClip operation to clarify the parameters and response. Updated the description of TTScapabilities. --- doc/Media2.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index b1ba5d110..602f62098 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2358,9 +2358,9 @@
AddTTSAudioClip - This operation adds a text and its configuartion to the device so that device could convert the text to an audio clip and play it based on the configuration. - The response to the command includes a unique token for this converted audio clip. - If the device is unable to support certain language,then returns error message. + This operation adds a text, audio clip configuration and TTS configuration to the device, for device converting the text to an audio clip based on the TTS configuration. + The response to the command includes a unique token for this converted audio clip. + If the device is unable to support language specified in the TTS configuration, the associated configuration will deleted from the device. request @@ -2814,7 +2814,7 @@ TTSCapabilities - Indicates device supports TTS function and corresponding configuration. + Indicates device supports TTS function and TTS configuration. MaxAudioClipLimit From 65f8b9cf5b8023482a13914e22d9aa4bf71a8416 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 3 Dec 2025 19:08:48 +0800 Subject: [PATCH 06/19] Revise TTS configuration text and add capabilities entry Updated TTS configuration description and added TTSCapabilities entry. --- doc/Media2.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index 602f62098..ae5ba024b 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2372,7 +2372,7 @@ Audio clip configuration to add. TTSConfiguration - [tr2:TTSAudio] - TTS configuration to add. + TTS configuration for converting a text to an audio clip. @@ -2812,10 +2812,6 @@ The following audio clip Capabilities are available: - - TTSCapabilities - Indicates device supports TTS function and TTS configuration. - MaxAudioClipLimit Indicates the maximum number of audio clips that can be uploaded to the device. @@ -2827,6 +2823,10 @@ SupportedAudioClipFormat Enumerates the supported audio clip formats. See tr2: SupportedAudioClipFormat. + + + TTSCapabilities + Indicates device supports TTS function and TTS configuration.See tr2: TTSCapabilities.
From 7b61dc75cc23ae9339d56ad5fa28d2ffb3e5ed21 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 3 Dec 2025 19:18:11 +0800 Subject: [PATCH 07/19] Update documentation for TTS attributes and elements --- wsdl/ver20/media/wsdl/media.wsdl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 7d7334656..1d309685a 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -241,12 +241,12 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - Indicates what language(s) the device supports for TTS function. + Indicates what language(s) the device supports in TTS function. - Indicates the voice type for TTS funciton. + Indicates the voice type in TTS funciton. @@ -1506,12 +1506,12 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO
- Language for the audio clip content, it is the same as the language during playback. + Language for the TTS audio clip playback. See tr2: TTSLanguage. - The voice type of audio clip playback. + The voice type for the TTS audio clip playback. See tr2: TTSVoiceType. From e4703a23ad451ae82e7a5111c1653f766d09f4a7 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Thu, 11 Dec 2025 10:01:37 +0800 Subject: [PATCH 08/19] Update Media2.xml delete inappropriate note for OPTION AddTTSAudioClip --- doc/Media2.xml | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index ae5ba024b..3b2b41714 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2399,20 +2399,7 @@ WRITE_SYSTEM - - - Note: Audio clip uploads to the device can fail in the following scenarios, and a specific HTTP error code should be returned to the client when an upload fails. - - - When the upload URL has expired, the device should return an HTTP 410 error to the client. - - - When the format of the audio clip upload does not match the Type parameter in the audio clip configuration, the device should return an HTTP 415 Unsupported Media Type error to the client. - - - When the size of the audio clip upload exceeds the MaxAudioClipSize parameter in KB, the device should return an HTTP 413, Request Entity Too Large error to the client. - - +
SetAudioClip From 61ff3abbaaa13f22d642cba508413ffe3536d0e9 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Mon, 5 Jan 2026 10:29:56 +0800 Subject: [PATCH 09/19] Fix typos in Media2.xml documentation --- doc/Media2.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index 3b2b41714..80ac95346 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2360,7 +2360,7 @@ AddTTSAudioClip This operation adds a text, audio clip configuration and TTS configuration to the device, for device converting the text to an audio clip based on the TTS configuration. The response to the command includes a unique token for this converted audio clip. - If the device is unable to support language specified in the TTS configuration, the associated configuration will deleted from the device. + If the device is unable to support language specified in the TTS configuration, the associated configuration will be deleted from the device. request @@ -2813,7 +2813,7 @@ TTSCapabilities - Indicates device supports TTS function and TTS configuration.See tr2: TTSCapabilities. + Indicates device supports TTS function and TTS configuration. See tr2: TTSCapabilities.
From a9f75851f3485892cd0b1f67b16af4fd354f5832 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 7 Jan 2026 11:43:25 +0800 Subject: [PATCH 10/19] Rename section from 'section_wvd_dzg_rye' to 'section_AddTTSAudioClip' --- doc/Media2.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index 80ac95346..d57042386 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2356,7 +2356,7 @@ -
+
AddTTSAudioClip This operation adds a text, audio clip configuration and TTS configuration to the device, for device converting the text to an audio clip based on the TTS configuration. The response to the command includes a unique token for this converted audio clip. From baa4502929bba8775e13a60ab2691fc208a23a42 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 7 Jan 2026 12:31:36 +0800 Subject: [PATCH 11/19] Update media.wsdl update description for TTSLanguage and TTSVoiceType --- wsdl/ver20/media/wsdl/media.wsdl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 1d309685a..2a8eaf61a 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -246,7 +246,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - Indicates the voice type in TTS funciton. + Indicates the voice type(s) the device supports in TTS funciton. @@ -1506,12 +1506,12 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - Language for the TTS audio clip playback. See tr2: TTSLanguage. + The language which is supported and used for TTS audio clip playback. See tr2: TTSLanguage. - The voice type for the TTS audio clip playback. See tr2: TTSVoiceType. + The voice type which is supported and used for TTS audio clip playback. See tr2: TTSVoiceType. From 79d31e3df9391cf1ec36ea8634bb30e200e7239f Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 14 Jan 2026 17:43:51 +0800 Subject: [PATCH 12/19] Update description of response token in AddTTSAudioClip in Media2.xml --- doc/Media2.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/Media2.xml b/doc/Media2.xml index d57042386..3c12195d7 100644 --- a/doc/Media2.xml +++ b/doc/Media2.xml @@ -2379,7 +2379,7 @@ response Token - [tt:ReferenceToken] - Unique token of the TTS audio clip to be uploaded. + Unique token assigned by device for the TTS audio clip. From 86e4eaa45bfe6c59295baf846aa933a209e73af5 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 14 Jan 2026 17:46:06 +0800 Subject: [PATCH 13/19] Update documentation for Token element in media.wsdl Update documentation for Token element for AddTTSAudioClip response --- wsdl/ver20/media/wsdl/media.wsdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 2a8eaf61a..8b0abd92b 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -1679,7 +1679,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - Unique token of the TTS audio clip to be uploaded. + Unique token assigned by device for the TTS audio clip. From 226c053b26a68bb593f7b2c6d1f1cdadcc474a46 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Tue, 3 Feb 2026 15:58:48 +0800 Subject: [PATCH 14/19] Revise TTSLanguage type with ISO codes and explanation Updated TTSLanguage type to include ISO language and country codes with documentation. --- wsdl/ver20/media/wsdl/media.wsdl | 30 +++++++++++++++++++----------- 1 file changed, 19 insertions(+), 11 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 8b0abd92b..79a885bc2 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -252,17 +252,25 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - - - - - - - - - - - + + + + Reference ISO 639 alpha-2 language codes. + See Codes for the Representation of Names of Languages. + + Note: When a language has regional characteristics, it can be represented in the language code-country code format. Reference ISO 3166 alpha-2 country codes. + See ISO Country Codes. + + + + + + + + + + + From 27eeddc9567817abb5ef5e72b8598a884fb59326 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 4 Feb 2026 15:36:37 +0800 Subject: [PATCH 15/19] Update documentation in media.wsdl Added note about enumeration values being illustrative in TTSLanguage. --- wsdl/ver20/media/wsdl/media.wsdl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 79a885bc2..ed7c30f9a 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -258,8 +258,10 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO Reference ISO 639 alpha-2 language codes. See Codes for the Representation of Names of Languages. - Note: When a language has regional characteristics, it can be represented in the language code-country code format. Reference ISO 3166 alpha-2 country codes. + When a language has regional characteristics, it can be represented in the language code-country code format. Reference ISO 3166 alpha-2 country codes. See ISO Country Codes. + + Note: The enumeration values provided here are for illustrative purposes only. @@ -269,6 +271,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO + From e8355721dac5a03f1c6e8427843a407f2de45905 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Wed, 4 Mar 2026 15:46:46 +0800 Subject: [PATCH 16/19] Update media.wsdl Revise the description of language definition in TTScapability and TTSAudio --- wsdl/ver20/media/wsdl/media.wsdl | 43 ++++++++++---------------------- 1 file changed, 13 insertions(+), 30 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index ed7c30f9a..f516321c5 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -232,49 +232,28 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + - Indicates the maximum length of content of a text for device to convert to an audio clip. + Indicates the maximum length of content of a text for device to convert to an audio clip. - Indicates what language(s) the device supports in TTS function. + + List of supported languages. Uses ISO 639-1 alpha-2 language codes, such as"en" for English. See Codes for the Representation of Names of Languages. + Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. + - Indicates the voice type(s) the device supports in TTS funciton. + List of supported voice types. See tr2: TTSVoiceType. - - - - - Reference ISO 639 alpha-2 language codes. - See Codes for the Representation of Names of Languages. - - When a language has regional characteristics, it can be represented in the language code-country code format. Reference ISO 3166 alpha-2 country codes. - See ISO Country Codes. - - Note: The enumeration values provided here are for illustrative purposes only. - - - - - - - - - - - - - @@ -1517,12 +1496,16 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - The language which is supported and used for TTS audio clip playback. See tr2: TTSLanguage. + + The language that is supported by the device and used for TTS audio clip playback. + Uses ISO 639-1 alpha-2 language codes for definition, such as"en" for English. See Codes for the Representation of Names of Languages. + Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. + - The voice type which is supported and used for TTS audio clip playback. See tr2: TTSVoiceType. + The voice type that is supported by the device and used for TTS audio clip playback. See tr2: TTSVoiceType. From 2a71cbda85c83be2d8afb10054bfe02ac03c56e5 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Mon, 16 Mar 2026 14:24:46 +0800 Subject: [PATCH 17/19] Update media.wsdl --- wsdl/ver20/media/wsdl/media.wsdl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index f516321c5..9e6a8d95e 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -232,7 +232,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO - + From 3d8c89a4953dea6fca86935bd7b75c2fc663e325 Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Thu, 2 Apr 2026 14:00:28 +0800 Subject: [PATCH 18/19] Update media.wsdl update the reference link for country code --- wsdl/ver20/media/wsdl/media.wsdl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 9e6a8d95e..647178a95 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -243,7 +243,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO List of supported languages. Uses ISO 639-1 alpha-2 language codes, such as"en" for English. See Codes for the Representation of Names of Languages. - Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. + Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. @@ -1499,7 +1499,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO The language that is supported by the device and used for TTS audio clip playback. Uses ISO 639-1 alpha-2 language codes for definition, such as"en" for English. See Codes for the Representation of Names of Languages. - Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. + Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. From 088525a346f7c6cdf31eaf1b982dc7906707c27a Mon Sep 17 00:00:00 2001 From: Peggy0422 Date: Thu, 2 Apr 2026 14:36:15 +0800 Subject: [PATCH 19/19] Update media.wsdl --- wsdl/ver20/media/wsdl/media.wsdl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wsdl/ver20/media/wsdl/media.wsdl b/wsdl/ver20/media/wsdl/media.wsdl index 647178a95..c76128b53 100644 --- a/wsdl/ver20/media/wsdl/media.wsdl +++ b/wsdl/ver20/media/wsdl/media.wsdl @@ -243,7 +243,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO List of supported languages. Uses ISO 639-1 alpha-2 language codes, such as"en" for English. See Codes for the Representation of Names of Languages. - Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. + Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166-1 Country Codes. @@ -1499,7 +1499,7 @@ IN NO EVENT WILL THE CORPORATION OR ITS MEMBERS OR THEIR AFFILIATES BE LIABLE FO The language that is supported by the device and used for TTS audio clip playback. Uses ISO 639-1 alpha-2 language codes for definition, such as"en" for English. See Codes for the Representation of Names of Languages. - Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166 Country Codes. + Optionally combined with ISO 3166-1 alpha-2 country codes using the "language-country" format to specify regional variations, such as"en-US" for American English. For country codes, see ISO 3166-1 Country Codes.