extract_douyin_text
Extract text from Douyin video content using a share link. Supports optional speech recognition models for accurate transcription. Requires DASHSCOPE_API_KEY for integration.
Instructions
从抖音分享链接提取视频中的文本内容
参数:
- share_link: 抖音分享链接或包含链接的文本
- model: 语音识别模型(可选,默认使用paraformer-v2)
返回:
- 提取的文本内容
注意: 需要设置环境变量 DASHSCOPE_API_KEY
Input Schema
Name | Required | Description | Default |
---|---|---|---|
model | No | ||
share_link | Yes |
Input Schema (JSON Schema)
{
"properties": {
"model": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Model"
},
"share_link": {
"title": "Share Link",
"type": "string"
}
},
"required": [
"share_link"
],
"title": "extract_douyin_textArguments",
"type": "object"
}