get_video_info
Extract video metadata such as title, duration, and format details from URLs without downloading. Supports YouTube, Bilibili, TikTok, and more using Video Fetch MCP.
Instructions
获取视频信息(不下载)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | 视频链接URL |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "视频链接URL",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}