video_id_parse_tool_wrapper
Extract video details by parsing source and video ID from platforms like TikTok and Kuaishou. Returns status code, message, and video information for efficient data retrieval.
Instructions
根据视频来源和ID解析视频信息
参数:
- source: 视频来源
- video_id: 视频ID
返回:
- code: 状态码
- msg: 状态信息
- data: 视频信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
source | Yes | ||
video_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"source": {
"title": "Source",
"type": "string"
},
"video_id": {
"title": "Video Id",
"type": "string"
}
},
"required": [
"source",
"video_id"
],
"type": "object"
}