- Image Translation
- Image AI Tools
- Create product image generation taskPOST
- Query product image generation taskPOST
- Create precise cutout taskPOST
- Query precise cutout taskPOST
- Create basic HD upscaling taskPOST
- Query basic HD upscaling taskPOST
- Create smart cutout taskPOST
- Query smart cutout taskPOST
- Create face swapping taskPOST
- Query face swapping taskPOST
- Create image upscaling taskPOST
- Query image upscaling taskPOST
- Create image variation taskPOST
- Query image variation taskPOST
- Text Service
- Video Translation
Query video subtitle translation task
POST
https://api.piclaza.com/task/v1/video/translate-text/result
Video
Last modified:2025-06-23 10:53:58
Request
Body Params application/json
Video translation request parameters
task_ids
array[string]
required
Example
{
"task_ids": [
"string"
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.piclaza.com/task/v1/video/translate-text/result' \
--header 'Content-Type: application/json' \
--data-raw '{
"task_ids": [
"string"
]
}'
Responses
🟢200OK
application/json
Body
Response result
code
integer <int32>
optional
message
stringÂ
optional
data
objectÂ
optional
results
array[object (VideoTranslateTextResultResult) {7}]Â
optional
Example
{
"code": 0,
"message": "string",
"data": {
"results": [
{
"code": 0,
"task_id": "string",
"type": "string",
"status": "string",
"created_at": "string",
"updated_at": "string",
"video": {
"version": 0,
"options": {
"source_language": "string",
"target_language": "string",
"resolution": "string",
"subtitle_options": {
"disable": true,
"font_name": "string",
"font_size": 0,
"bold": true,
"italic": true,
"text_color": "string",
"background_color": "string",
"stroke_width": 0,
"stroke_color": "string",
"shadow_x": 0,
"shadow_y": 0,
"shadow_range": 0,
"shadow_color": "string"
},
"dubbing_options": {
"gender": "Male",
"style": "chat",
"locale": "string",
"name": "string",
"rate": 0,
"pitch": 0,
"volume": 0
},
"bgm_options": {
"mode": "random",
"name": "string",
"style": "fashion",
"volume": 0,
"audio": "string"
},
"trim_options": {
"start_time": "string",
"end_time": "string"
},
"mirror": true,
"text_removal_video": "string"
},
"meta": {
"title": "string",
"filename": "string",
"duration": 0,
"width": 0,
"height": 0,
"cover_image": "string",
"thumbnail_video": "string",
"original_video": "string",
"original_audio": "string"
},
"text_removal_video": "string",
"translated_video": "string",
"dubbing_audio": {
"audio": "string",
"start_time": "string",
"end_time": "string",
"volume": 0
},
"bgm_audio": {
"audio": "string",
"start_time": "string",
"end_time": "string",
"volume": 0
},
"subtitles": [
{
"sid": 0,
"disabled": 0,
"original_text": "string",
"translated_text": "string",
"ori_bounding_box": "string",
"ori_start_time": "string",
"ori_end_time": "string",
"bounding_box": "string",
"start_time": "string",
"end_time": "string",
"direction": "string",
"line_count": 0,
"font_size": 0,
"font_color": "string",
"outline_width": 0,
"outline_color": "string",
"render_options": {
"texts": [
{
"text": "string",
"x": 0,
"y": 0
}
]
}
}
],
"result_video": "string",
"result_version": 0,
"result_render_info": {
"version": 0,
"code": 0,
"message": "string"
}
}
}
]
}
}
Modified at 2025-06-23 10:53:58