Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update color from bgr to rbg.
  • Loading branch information
DapengLi2016 committed May 26, 2025
commit cd0b6a92d3ed2c56a91bdec3d72899a080f3586e
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ model IterationInput {
enableOcrCorrectionFromSubtitle?: boolean;

@added(ApiVersions.v2025_05_20)
@doc("This parameter specifies the primary color of the subtitles in the video translation output. The value should be provided in the format <bb><gg><rr> or #<bb><gg><rr>, where <bb> represents the blue component, <gg> represents the green component, and <rr> represents the red component of the color. For example, EBA205 or #EBA205 would set the subtitle color to a specific shade of yellow. This parameter allows for customization of subtitle appearance to enhance readability and visual appeal")
@doc("This parameter specifies the primary color of the subtitles in the video translation output. The value should be provided in the format <rr><gg><bb> or #<rr><gg><bb>, where <rr> represents the red component of the color, <gg> represents the green component, and <bb> represents the blue component. For example, EBA205 or #EBA205 would set the subtitle color to a specific shade of yellow. This parameter allows for customization of subtitle appearance to enhance readability and visual appeal")
subtitlePrimaryColor?: string;

@added(ApiVersions.v2025_05_20)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -973,7 +973,7 @@
},
"subtitlePrimaryColor": {
"type": "string",
"description": "This parameter specifies the primary color of the subtitles in the video translation output. The value should be provided in the format <bb><gg><rr> or #<bb><gg><rr>, where <bb> represents the blue component, <gg> represents the green component, and <rr> represents the red component of the color. For example, EBA205 or #EBA205 would set the subtitle color to a specific shade of yellow. This parameter allows for customization of subtitle appearance to enhance readability and visual appeal"
"description": "This parameter specifies the primary color of the subtitles in the video translation output. The value should be provided in the format <rr><gg><bb> or #<rr><gg><bb>, where <rr> represents the red component of the color, <gg> represents the green component, and <bb> represents the blue component. For example, EBA205 or #EBA205 would set the subtitle color to a specific shade of yellow. This parameter allows for customization of subtitle appearance to enhance readability and visual appeal"
},
"enableEmotionalPlatformVoice": {
"$ref": "#/definitions/EnableEmotionalPlatformVoice",
Expand Down
Loading