Add Subtitles to Draft
capcut_add_subtitleAdd subtitles to a video draft by importing SRT content with customizable styling options.
Instructions
Add subtitles from SRT file content with styling options.
This tool imports subtitles in SRT format and applies styling.
Args:
draft_id (string): The draft ID
srt_content (string): SRT formatted subtitle content
font (string): Font family name (optional)
font_size (number): Font size 12-100 (default: 36)
font_color (string): Hex color (default: #FFFFFF)
background_enabled (boolean): Enable background (default: true)
background_color (string): Background hex color (default: #000000)
response_format ('markdown' | 'json'): Output format
Example SRT format: 1 00:00:01,000 --> 00:00:03,000 Welcome to my video
2 00:00:03,500 --> 00:00:05,000 Subscribe for more content
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| draft_id | Yes | The ID of the draft to add subtitles to | |
| srt_content | Yes | SRT formatted subtitle content | |
| font | No | Font family name | |
| font_size | No | Font size in points | |
| font_color | No | Font color in hex format | #FFFFFF |
| background_enabled | No | Enable background behind text | |
| background_color | No | Background color in hex format | #000000 |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |