tiktok.download_music_from_video
ActiveTool of Vee3
Download music from a TikTok video so the user or agent can save and reuse it. Provide either video_id or video_url, not both. The file is saved to account file storage. The response includes file_url for API users and download_code for agents to run `vee3-get-file`. Cost = 10 tokens.
Parameters schema
{
"type": "object",
"title": "download_tiktok_music_from_videoArguments",
"properties": {
"video_id": {
"anyOf": [
{
"type": "string",
"maxLength": 32
},
{
"type": "null"
}
],
"title": "Video Id",
"default": null,
"description": "TikTok video id."
},
"file_name": {
"anyOf": [
{
"type": "string",
"maxLength": 255
},
{
"type": "null"
}
],
"title": "File Name",
"default": null,
"description": "Optional account-relative storage path for the music file. If omitted, the file is stored under downloads/ with a generated name."
},
"video_url": {
"anyOf": [
{
"type": "string",
"maxLength": 2048
},
{
"type": "null"
}
],
"title": "Video Url",
"default": null,
"description": "TikTok video URL."
}
}
}Parent server
Vee3
https://github.com/Vee3io/Vee3
1/7 registries