update_video_metadata
Modify metadata for video files, including title, artist, album, genre, and tags, using a structured update object. Supports multiple formats for accurate and efficient metadata management.
Instructions
更新视频文件的元数据信息
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filePath | Yes | 视频文件的完整路径 | |
updates | Yes | 要更新的元数据字段 |
Input Schema (JSON Schema)
{
"properties": {
"filePath": {
"description": "视频文件的完整路径",
"type": "string"
},
"updates": {
"description": "要更新的元数据字段",
"properties": {
"album": {
"description": "专辑",
"type": "string"
},
"artist": {
"description": "艺术家/作者",
"type": "string"
},
"comment": {
"description": "评论",
"type": "string"
},
"copyright": {
"description": "版权信息",
"type": "string"
},
"date": {
"description": "日期",
"type": "string"
},
"description": {
"description": "描述",
"type": "string"
},
"genre": {
"description": "类型",
"type": "string"
},
"tags": {
"description": "标签列表",
"items": {
"type": "string"
},
"type": "array"
},
"title": {
"description": "标题",
"type": "string"
}
},
"type": "object"
}
},
"required": [
"filePath",
"updates"
],
"type": "object"
}