1. 字幕
流光剪辑
main
  • main
  • afanti
  • 一分钟,了解 流光剪辑!
  • 如何下载草稿
  • 在线预览草稿
  • 获取API Key
  • 价格表
  • 文本
    • 使用花字
    • 使用文字模版
    • 如何上传文字模板
    • add_text
    • remove_text
    • modify_text
    • add_subtitle
    • add_text_template
    • get_text_intro_types
    • get_text_outro_types
    • get_text_loop_anim_types
    • get_font_types
    • search_artist
  • 图片
    • get_intro_animation_types
    • get_outro_animation_types
    • get_combo_animation_types
    • add_image
    • modify_image
    • remove_image
  • 视频
    • add_video
    • modify_video
    • remove_video
  • 转场
    • get_transition_types
  • 蒙版
    • get_mask_types
  • 音频
    • get_audio_effect_types
    • add_audio
    • modify_audio
    • remove_audio
  • 关键帧
    • add_video_keyframe
  • 特效
    • get_video_character_effect_types
    • get_video_scene_effect_types
    • add_effect
    • modify_effect
    • remove_effect
  • 贴纸
    • search_sticker
    • add_sticker
  • 云渲染
    • 可使用字体
    • export_video
    • task_status
  • 工作流
    • 工作流脚本技术文档
    • 工作流 AI Prompt 提示词
    • 使用工作流功能
    • execute_workflow
  • 预设
    • 如何使用模版/预设功能
    • 如何上传模版
    • 快速体验预设
    • add_preset
    • presets
    • groups
  • 滤镜
    • add_filter
    • get_filter_types
    • modify_filter
    • remove_filter
  • 技能广场skills
    • 技能广场 Skills
    • 字幕
      • 识别字幕
      • 文稿匹配
      • generate_smart_subtitle
        POST
      • sta_subtitle
        POST
      • smart_subtitle_task_status
        GET
      • asr_basic
        POST
      • asr_nlp
        POST
      • AI识别字幕
        POST
      • AI识别字幕(去气口)
        POST
    • AI对话
      • 对话模型介绍
      • chat
      • model_list
    • 语音合成
      • 微软语音合成音色列表
      • MiniMax语音合成音色列表
      • MiniMax音色克隆
      • 豆包语音合成音色列表
      • Fish语音合成音色列表
      • Fish音色克隆
      • generate_speech
      • minimax_clone
      • fish_clone
      • voice_assets
    • AI生图
      • 图片生成聚合接口说明
      • generate_image
    • AI生视频
      • 视频生成聚合接口说明
      • ai_video_task_status
      • generate_ai_video
    • 数字人
      • create_digital_human
      • digital_human_task_status
    • 智能裁剪
      • smart_video_clip
    • 智能截图
      • smart_video_capture
    • 人物抠像
      • remove_background
    • 获取时长
      • get_duration
    • 提取音频
      • extract_audio
    • 分割视频
      • split_video
    • 视频理解
      • 获取视频详细描述
    • 获取分辨率
      • get_resolution
    • 网页数据获取
      • 解析小红书链接
      • 解析抖音链接
      • 解析快手链接
      • 解析B站链接
      • 解析TikTok链接
      • 解析YouTube链接
  • 口播模版
    • submit_agent_task
    • task_status
  • create_draft
    POST
  • 数据模型
    • Keyword
    • Word
    • Segment
    • AsrLlmVadRequest
    • AsrLlmVadResponse
  1. 字幕

AI识别字幕(去气口)

POST
/llm/asr_llm_vad

1. 这个接口能帮你做什么#

/llm/asr_llm_vad 是一个“更适合剪辑场景”的音频理解接口。
它的价值不是只给你全文,而是给你可直接用于编辑流程的分段化结果:
帮你拿到可读的完整文本(content)
帮你拿到可定位时间轴的分段结果(segments)
帮你拿到每段中的关键词及时间(keywords)
同一个接口支持两种能力模式:
ASR 模式:只给音频,自动识别内容
STA 模式:给音频 + 给定文案,做文本与语音时间对齐
适合用于:口播去冗余切片、短视频预剪辑、自动字幕分段、语音重点片段抽取。

2. 输入你需要提供什么#

url 音视频地址
content(可选)你希望对齐的目标文案;传入后进入 STA 模式

3. 输出你会拿到什么#

统一返回 JSON。你在业务上重点关注:
字段类型业务含义
successboolean请求是否成功
modestring本次走的是 asr 还是 sta
contentstring可直接展示/存储的全文文本
segmentsarray可直接做时间轴处理的分段数据
errorstring失败时的可读错误信息

4. 典型应用场景#

1.
短视频自动粗剪:按 segments 直接切片,减少人工初剪成本。
2.
口播优化回放:按段落跳播定位问题句,提升复检效率。
3.
字幕智能分段:以片段边界生成更自然的字幕块。
4.
爆点片段提取:结合关键词时间快速抽取重点内容。
5.
内容检索索引:按分段文本建立检索,支持“时间点跳转”。

5. 与 /llm/asr_llm 如何选#

你只想要“识别 + 对齐”的通用能力:选 /llm/asr_llm
你更关心“可剪辑分段结果”:优先选 /llm/asr_llm_vad
可以把两者配合使用:
1.
先用 /llm/asr_llm_vad 做自动切段
2.
再用 /llm/asr_llm(STA 模式)做关键文案对齐与精修

7. 失败时如何处理#

常见失败返回:
缺参数:缺少参数 url
缺鉴权:缺少 jwt_token 或 Authorization Bearer Token
额度不足:余额不足,可以去官网充值:https://www.vectcut.com
运行异常:llm_vad(asr) 服务调用失败: ...
业务侧建议:
1.
统一依据 success 判断成功与否。
2.
失败时展示 error,并保留请求 trace 便于排查。
3.
额度类错误走充值引导,网络类错误可做有限重试。

请求参数

Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token
示例:
Authorization: Bearer ********************
Body 参数application/json必填

示例

返回响应

🟢200成功
application/json
接口统一返回 200,业务结果请以 success 字段判断。
Body

请求示例请求示例
Shell
JavaScript
Java
Swift
cURL
curl --location --request POST 'https://open.vectcut.com/llm/asr_llm_vad' \
--header 'Authorization: Bearer  <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
  "url": "https://p3-bot-workflow-sign.byteimg.com/tos-cn-i-mdko3gqilj/ba7d779c17544e95afbe4a62708033e9.mp4~tplv-mdko3gqilj-image.image?rk3s=81d4c505&x-expires=1796916246&x-signature=04k4w%2FoWurPyGkiaQsLYGZgkALc%3D&x-wf-file_name=VID_20251215_232209.mp4"
}'
响应示例响应示例
{
    "content": "为什么我们选择把代码开源了明明辛辛苦苦做了半年而且开源版本的剪辑 API的能力实际上已经非常丰富了为什么选择这么做主要原因是我觉得未来一定是 AI 编程的时代人人都能通过和 AI 对话的方式实现自己想要的功能那把代码开源就是一个最好的微调全世界 AI模型的方法这样大家无论用哪一家的 AI去做剪辑工具的时候都有很大概率会用到我们的接口",
    "error": "",
    "mode": "asr",
    "segments": [
        {
            "drop_reason": "",
            "en": "",
            "end": 5580,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 3260,
            "text": "为什么我们选择把代码开源了",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 3420,
                    "start_time": 3260,
                    "text": "为"
                },
                {
                    "confidence": 0,
                    "end_time": 3540,
                    "start_time": 3420,
                    "text": "什"
                },
                {
                    "confidence": 0,
                    "end_time": 3620,
                    "start_time": 3540,
                    "text": "么"
                },
                {
                    "confidence": 0,
                    "end_time": 3740,
                    "start_time": 3620,
                    "text": "我"
                },
                {
                    "confidence": 0,
                    "end_time": 3900,
                    "start_time": 3740,
                    "text": "们"
                },
                {
                    "confidence": 0,
                    "end_time": 4060,
                    "start_time": 3900,
                    "text": "选"
                },
                {
                    "confidence": 0,
                    "end_time": 4180,
                    "start_time": 4060,
                    "text": "择"
                },
                {
                    "confidence": 0,
                    "end_time": 4460,
                    "start_time": 4180,
                    "text": "把"
                },
                {
                    "confidence": 0,
                    "end_time": 4700,
                    "start_time": 4500,
                    "text": "代"
                },
                {
                    "confidence": 0,
                    "end_time": 4900,
                    "start_time": 4700,
                    "text": "码"
                },
                {
                    "confidence": 0,
                    "end_time": 5100,
                    "start_time": 4940,
                    "text": "开"
                },
                {
                    "confidence": 0,
                    "end_time": 5220,
                    "start_time": 5180,
                    "text": "源"
                },
                {
                    "confidence": 0,
                    "end_time": 5580,
                    "start_time": 5340,
                    "text": "了"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 7780,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 5980,
            "text": "明明辛辛苦苦做了半年",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 6180,
                    "start_time": 5980,
                    "text": "明"
                },
                {
                    "confidence": 0,
                    "end_time": 6340,
                    "start_time": 6260,
                    "text": "明"
                },
                {
                    "confidence": 0,
                    "end_time": 6500,
                    "start_time": 6420,
                    "text": "辛"
                },
                {
                    "confidence": 0,
                    "end_time": 6700,
                    "start_time": 6580,
                    "text": "辛"
                },
                {
                    "confidence": 0,
                    "end_time": 6860,
                    "start_time": 6700,
                    "text": "苦"
                },
                {
                    "confidence": 0,
                    "end_time": 7020,
                    "start_time": 6900,
                    "text": "苦"
                },
                {
                    "confidence": 0,
                    "end_time": 7220,
                    "start_time": 7020,
                    "text": "做"
                },
                {
                    "confidence": 0,
                    "end_time": 7340,
                    "start_time": 7220,
                    "text": "了"
                },
                {
                    "confidence": 0,
                    "end_time": 7540,
                    "start_time": 7340,
                    "text": "半"
                },
                {
                    "confidence": 0,
                    "end_time": 7780,
                    "start_time": 7540,
                    "text": "年"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 10100,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 7980,
            "text": "而且开源版本的剪辑 API",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 8180,
                    "start_time": 7980,
                    "text": "而"
                },
                {
                    "confidence": 0,
                    "end_time": 8340,
                    "start_time": 8180,
                    "text": "且"
                },
                {
                    "confidence": 0,
                    "end_time": 8580,
                    "start_time": 8380,
                    "text": "开"
                },
                {
                    "confidence": 0,
                    "end_time": 8660,
                    "start_time": 8620,
                    "text": "源"
                },
                {
                    "confidence": 0,
                    "end_time": 8940,
                    "start_time": 8780,
                    "text": "版"
                },
                {
                    "confidence": 0,
                    "end_time": 9060,
                    "start_time": 8940,
                    "text": "本"
                },
                {
                    "confidence": 0,
                    "end_time": 9260,
                    "start_time": 9060,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 9500,
                    "start_time": 9260,
                    "text": "剪"
                },
                {
                    "confidence": 0,
                    "end_time": 9580,
                    "start_time": 9500,
                    "text": "辑"
                },
                {
                    "confidence": 0,
                    "end_time": 10100,
                    "start_time": 9780,
                    "text": "API"
                },
                {
                    "confidence": 0,
                    "end_time": 10300,
                    "start_time": 10100,
                    "text": "的"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 11420,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 10100,
            "text": "的能力实际上",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 10460,
                    "start_time": 10300,
                    "text": "能"
                },
                {
                    "confidence": 0,
                    "end_time": 10620,
                    "start_time": 10460,
                    "text": "力"
                },
                {
                    "confidence": 0,
                    "end_time": 11060,
                    "start_time": 10860,
                    "text": "实"
                },
                {
                    "confidence": 0,
                    "end_time": 11220,
                    "start_time": 11060,
                    "text": "际"
                },
                {
                    "confidence": 0,
                    "end_time": 11420,
                    "start_time": 11220,
                    "text": "上"
                },
                {
                    "confidence": 0,
                    "end_time": 11660,
                    "start_time": 11420,
                    "text": "已"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 12860,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 11420,
            "text": "已经非常丰富了",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 11860,
                    "start_time": 11660,
                    "text": "经"
                },
                {
                    "confidence": 0,
                    "end_time": 12060,
                    "start_time": 11860,
                    "text": "非"
                },
                {
                    "confidence": 0,
                    "end_time": 12220,
                    "start_time": 12060,
                    "text": "常"
                },
                {
                    "confidence": 0,
                    "end_time": 12460,
                    "start_time": 12220,
                    "text": "丰"
                },
                {
                    "confidence": 0,
                    "end_time": 12620,
                    "start_time": 12460,
                    "text": "富"
                },
                {
                    "confidence": 0,
                    "end_time": 12860,
                    "start_time": 12620,
                    "text": "了"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 14860,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 13740,
            "text": "为什么选择这么做",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 13900,
                    "start_time": 13740,
                    "text": "为"
                },
                {
                    "confidence": 0,
                    "end_time": 13980,
                    "start_time": 13900,
                    "text": "什"
                },
                {
                    "confidence": 0,
                    "end_time": 14060,
                    "start_time": 13980,
                    "text": "么"
                },
                {
                    "confidence": 0,
                    "end_time": 14220,
                    "start_time": 14060,
                    "text": "选"
                },
                {
                    "confidence": 0,
                    "end_time": 14340,
                    "start_time": 14220,
                    "text": "择"
                },
                {
                    "confidence": 0,
                    "end_time": 14460,
                    "start_time": 14340,
                    "text": "这"
                },
                {
                    "confidence": 0,
                    "end_time": 14580,
                    "start_time": 14460,
                    "text": "么"
                },
                {
                    "confidence": 0,
                    "end_time": 14860,
                    "start_time": 14580,
                    "text": "做"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 16820,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 15260,
            "text": "主要原因是我觉得",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 15460,
                    "start_time": 15260,
                    "text": "主"
                },
                {
                    "confidence": 0,
                    "end_time": 15580,
                    "start_time": 15460,
                    "text": "要"
                },
                {
                    "confidence": 0,
                    "end_time": 15740,
                    "start_time": 15580,
                    "text": "原"
                },
                {
                    "confidence": 0,
                    "end_time": 15900,
                    "start_time": 15740,
                    "text": "因"
                },
                {
                    "confidence": 0,
                    "end_time": 16220,
                    "start_time": 15900,
                    "text": "是"
                },
                {
                    "confidence": 0,
                    "end_time": 16460,
                    "start_time": 16220,
                    "text": "我"
                },
                {
                    "confidence": 0,
                    "end_time": 16660,
                    "start_time": 16460,
                    "text": "觉"
                },
                {
                    "confidence": 0,
                    "end_time": 16820,
                    "start_time": 16660,
                    "text": "得"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 19540,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 17020,
            "text": "未来一定是 AI 编程的时代",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 17260,
                    "start_time": 17020,
                    "text": "未"
                },
                {
                    "confidence": 0,
                    "end_time": 17540,
                    "start_time": 17260,
                    "text": "来"
                },
                {
                    "confidence": 0,
                    "end_time": 17860,
                    "start_time": 17660,
                    "text": "一"
                },
                {
                    "confidence": 0,
                    "end_time": 18020,
                    "start_time": 17860,
                    "text": "定"
                },
                {
                    "confidence": 0,
                    "end_time": 18300,
                    "start_time": 18020,
                    "text": "是"
                },
                {
                    "confidence": 0,
                    "end_time": 18620,
                    "start_time": 18380,
                    "text": "AI"
                },
                {
                    "confidence": 0,
                    "end_time": 18940,
                    "start_time": 18740,
                    "text": "编"
                },
                {
                    "confidence": 0,
                    "end_time": 19060,
                    "start_time": 18940,
                    "text": "程"
                },
                {
                    "confidence": 0,
                    "end_time": 19220,
                    "start_time": 19060,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 19380,
                    "start_time": 19220,
                    "text": "时"
                },
                {
                    "confidence": 0,
                    "end_time": 19540,
                    "start_time": 19380,
                    "text": "代"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 22640,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 20240,
            "text": "人人都能通过和 AI 对话",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 20440,
                    "start_time": 20240,
                    "text": "人"
                },
                {
                    "confidence": 0,
                    "end_time": 20640,
                    "start_time": 20480,
                    "text": "人"
                },
                {
                    "confidence": 0,
                    "end_time": 20880,
                    "start_time": 20640,
                    "text": "都"
                },
                {
                    "confidence": 0,
                    "end_time": 21160,
                    "start_time": 20880,
                    "text": "能"
                },
                {
                    "confidence": 0,
                    "end_time": 21360,
                    "start_time": 21160,
                    "text": "通"
                },
                {
                    "confidence": 0,
                    "end_time": 21520,
                    "start_time": 21360,
                    "text": "过"
                },
                {
                    "confidence": 0,
                    "end_time": 21800,
                    "start_time": 21520,
                    "text": "和"
                },
                {
                    "confidence": 0,
                    "end_time": 22240,
                    "start_time": 21840,
                    "text": "AI"
                },
                {
                    "confidence": 0,
                    "end_time": 22440,
                    "start_time": 22240,
                    "text": "对"
                },
                {
                    "confidence": 0,
                    "end_time": 22640,
                    "start_time": 22440,
                    "text": "话"
                },
                {
                    "confidence": 0,
                    "end_time": 22800,
                    "start_time": 22640,
                    "text": "的"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 25160,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 22640,
            "text": "的方式实现自己想要的功能",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 22960,
                    "start_time": 22800,
                    "text": "方"
                },
                {
                    "confidence": 0,
                    "end_time": 23120,
                    "start_time": 22960,
                    "text": "式"
                },
                {
                    "confidence": 0,
                    "end_time": 23880,
                    "start_time": 23640,
                    "text": "实"
                },
                {
                    "confidence": 0,
                    "end_time": 24080,
                    "start_time": 23880,
                    "text": "现"
                },
                {
                    "confidence": 0,
                    "end_time": 24240,
                    "start_time": 24080,
                    "text": "自"
                },
                {
                    "confidence": 0,
                    "end_time": 24360,
                    "start_time": 24240,
                    "text": "己"
                },
                {
                    "confidence": 0,
                    "end_time": 24560,
                    "start_time": 24360,
                    "text": "想"
                },
                {
                    "confidence": 0,
                    "end_time": 24680,
                    "start_time": 24560,
                    "text": "要"
                },
                {
                    "confidence": 0,
                    "end_time": 24840,
                    "start_time": 24680,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 25000,
                    "start_time": 24840,
                    "text": "功"
                },
                {
                    "confidence": 0,
                    "end_time": 25160,
                    "start_time": 25000,
                    "text": "能"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 28470,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 25830,
            "text": "那把代码开源就是一个",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 26070,
                    "start_time": 25830,
                    "text": "那"
                },
                {
                    "confidence": 0,
                    "end_time": 26390,
                    "start_time": 26110,
                    "text": "把"
                },
                {
                    "confidence": 0,
                    "end_time": 26750,
                    "start_time": 26510,
                    "text": "代"
                },
                {
                    "confidence": 0,
                    "end_time": 26950,
                    "start_time": 26750,
                    "text": "码"
                },
                {
                    "confidence": 0,
                    "end_time": 27190,
                    "start_time": 26990,
                    "text": "开"
                },
                {
                    "confidence": 0,
                    "end_time": 27310,
                    "start_time": 27190,
                    "text": "源"
                },
                {
                    "confidence": 0,
                    "end_time": 28070,
                    "start_time": 27830,
                    "text": "就"
                },
                {
                    "confidence": 0,
                    "end_time": 28190,
                    "start_time": 28070,
                    "text": "是"
                },
                {
                    "confidence": 0,
                    "end_time": 28310,
                    "start_time": 28190,
                    "text": "一"
                },
                {
                    "confidence": 0,
                    "end_time": 28470,
                    "start_time": 28310,
                    "text": "个"
                },
                {
                    "confidence": 0,
                    "end_time": 28710,
                    "start_time": 28470,
                    "text": "最"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 31070,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 28470,
            "text": "最好的微调全世界 AI",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 28950,
                    "start_time": 28710,
                    "text": "好"
                },
                {
                    "confidence": 0,
                    "end_time": 29190,
                    "start_time": 28950,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 29630,
                    "start_time": 29510,
                    "text": "微"
                },
                {
                    "confidence": 0,
                    "end_time": 30030,
                    "start_time": 29750,
                    "text": "调"
                },
                {
                    "confidence": 0,
                    "end_time": 30350,
                    "start_time": 30110,
                    "text": "全"
                },
                {
                    "confidence": 0,
                    "end_time": 30510,
                    "start_time": 30350,
                    "text": "世"
                },
                {
                    "confidence": 0,
                    "end_time": 30710,
                    "start_time": 30510,
                    "text": "界"
                },
                {
                    "confidence": 0,
                    "end_time": 31070,
                    "start_time": 30830,
                    "text": "AI"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 31990,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 31150,
            "text": "模型的方法",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 31350,
                    "start_time": 31150,
                    "text": "模"
                },
                {
                    "confidence": 0,
                    "end_time": 31470,
                    "start_time": 31350,
                    "text": "型"
                },
                {
                    "confidence": 0,
                    "end_time": 31630,
                    "start_time": 31470,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 31790,
                    "start_time": 31630,
                    "text": "方"
                },
                {
                    "confidence": 0,
                    "end_time": 31990,
                    "start_time": 31790,
                    "text": "法"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 34820,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 32700,
            "text": "这样大家无论用哪一家的 AI",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 32860,
                    "start_time": 32700,
                    "text": "这"
                },
                {
                    "confidence": 0,
                    "end_time": 33020,
                    "start_time": 32860,
                    "text": "样"
                },
                {
                    "confidence": 0,
                    "end_time": 33260,
                    "start_time": 33020,
                    "text": "大"
                },
                {
                    "confidence": 0,
                    "end_time": 33460,
                    "start_time": 33260,
                    "text": "家"
                },
                {
                    "confidence": 0,
                    "end_time": 33660,
                    "start_time": 33500,
                    "text": "无"
                },
                {
                    "confidence": 0,
                    "end_time": 33780,
                    "start_time": 33660,
                    "text": "论"
                },
                {
                    "confidence": 0,
                    "end_time": 33980,
                    "start_time": 33780,
                    "text": "用"
                },
                {
                    "confidence": 0,
                    "end_time": 34100,
                    "start_time": 33980,
                    "text": "哪"
                },
                {
                    "confidence": 0,
                    "end_time": 34220,
                    "start_time": 34100,
                    "text": "一"
                },
                {
                    "confidence": 0,
                    "end_time": 34380,
                    "start_time": 34220,
                    "text": "家"
                },
                {
                    "confidence": 0,
                    "end_time": 34540,
                    "start_time": 34380,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 34820,
                    "start_time": 34580,
                    "text": "AI"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 37820,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 34980,
            "text": "去做剪辑工具的时候",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 35340,
                    "start_time": 34980,
                    "text": "去"
                },
                {
                    "confidence": 0,
                    "end_time": 35820,
                    "start_time": 35500,
                    "text": "做"
                },
                {
                    "confidence": 0,
                    "end_time": 36300,
                    "start_time": 36020,
                    "text": "剪"
                },
                {
                    "confidence": 0,
                    "end_time": 36460,
                    "start_time": 36300,
                    "text": "辑"
                },
                {
                    "confidence": 0,
                    "end_time": 36900,
                    "start_time": 36620,
                    "text": "工"
                },
                {
                    "confidence": 0,
                    "end_time": 37100,
                    "start_time": 36900,
                    "text": "具"
                },
                {
                    "confidence": 0,
                    "end_time": 37460,
                    "start_time": 37220,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 37620,
                    "start_time": 37460,
                    "text": "时"
                },
                {
                    "confidence": 0,
                    "end_time": 37820,
                    "start_time": 37620,
                    "text": "候"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 39340,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 38260,
            "text": "都有很大概率",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 38500,
                    "start_time": 38260,
                    "text": "都"
                },
                {
                    "confidence": 0,
                    "end_time": 38660,
                    "start_time": 38500,
                    "text": "有"
                },
                {
                    "confidence": 0,
                    "end_time": 38820,
                    "start_time": 38660,
                    "text": "很"
                },
                {
                    "confidence": 0,
                    "end_time": 39020,
                    "start_time": 38820,
                    "text": "大"
                },
                {
                    "confidence": 0,
                    "end_time": 39220,
                    "start_time": 39020,
                    "text": "概"
                },
                {
                    "confidence": 0,
                    "end_time": 39340,
                    "start_time": 39220,
                    "text": "率"
                }
            ]
        },
        {
            "drop_reason": "",
            "en": "",
            "end": 40780,
            "keywords": [],
            "source_end_index": null,
            "source_start_index": null,
            "start": 39420,
            "text": "会用到我们的接口",
            "words": [
                {
                    "confidence": 0,
                    "end_time": 39660,
                    "start_time": 39420,
                    "text": "会"
                },
                {
                    "confidence": 0,
                    "end_time": 39820,
                    "start_time": 39660,
                    "text": "用"
                },
                {
                    "confidence": 0,
                    "end_time": 39940,
                    "start_time": 39820,
                    "text": "到"
                },
                {
                    "confidence": 0,
                    "end_time": 40060,
                    "start_time": 39940,
                    "text": "我"
                },
                {
                    "confidence": 0,
                    "end_time": 40140,
                    "start_time": 40060,
                    "text": "们"
                },
                {
                    "confidence": 0,
                    "end_time": 40300,
                    "start_time": 40140,
                    "text": "的"
                },
                {
                    "confidence": 0,
                    "end_time": 40500,
                    "start_time": 40300,
                    "text": "接"
                },
                {
                    "confidence": 0,
                    "end_time": 40780,
                    "start_time": 40500,
                    "text": "口"
                }
            ]
        }
    ],
    "success": true
}
修改于 2026-04-05 09:21:34
上一页
AI识别字幕
下一页
对话模型介绍
Built with