π¦ ClawHub
Tomoviee Video Background Music
by @wondershare-boop
Generate music tailored to video content. Use when users request video_soundtrack operations or related tasks.
TERMINAL
clawhub install tomoviee-video-background-musicπ About This Skill
name: tomoviee-video-scoring description: Generate music tailored to video content. Use when users request video_soundtrack operations or related tasks.
Tomoviee AI - θ§ι’ι δΉ (Video Soundtrack)
Overview
Generate music tailored to video content.
API: tm_video_scoring
Quick Start
Authentication
python scripts/generate_auth_token.py YOUR_APP_KEY YOUR_APP_SECRET
Python Client
from scripts.tomoviee_video_soundtrack_client import TomovieeClientclient = TomovieeClient("app_key", "app_secret")
API Usage
Basic Example
task_id = client._make_request({
video='https://example.com/my-video.mp4'
prompt='Modern tech product music, clean'
})result = client.poll_until_complete(task_id)
import json
output = json.loads(result['result'])
Parameters
video (required): Video URL (MP4, <200M)prompt: Optional style guidanceduration: Audio duration (5-900, default: 20)Async Workflow
1. Create task: Get task_id from API call
2. Poll for completion: Use poll_until_complete(task_id)
3. Extract result: Parse returned JSON for output URLs
Status codes:
Resources
scripts/
tomoviee_video_soundtrack_client.py - API clientgenerate_auth_token.py - Auth token generatorreferences/
See bundled reference documents for detailed API documentation and examples.External Resources
π‘ Examples
Authentication
python scripts/generate_auth_token.py YOUR_APP_KEY YOUR_APP_SECRET
Python Client
from scripts.tomoviee_video_soundtrack_client import TomovieeClientclient = TomovieeClient("app_key", "app_secret")