{
  "schemaVersion": "1.0",
  "item": {
    "slug": "cutmv-video-tool",
    "name": "cutmv Video Tool",
    "source": "tencent",
    "type": "skill",
    "category": "其他",
    "sourceUrl": "https://clawhub.ai/QiaoTuCodes/cutmv-video-tool",
    "canonicalUrl": "https://clawhub.ai/QiaoTuCodes/cutmv-video-tool",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/cutmv-video-tool",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=cutmv-video-tool",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README-CN.md",
      "README.md",
      "SKILL.md",
      "skill.py"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/cutmv-video-tool"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/cutmv-video-tool",
    "agentPageUrl": "https://openagent3.xyz/skills/cutmv-video-tool/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cutmv-video-tool/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cutmv-video-tool/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Then review README.md for any prerequisites, environment setup, or post-install checks. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Skill Name",
        "body": "cutmv-video-tool"
      },
      {
        "title": "Description",
        "body": "A video processing skill for OpenClaw that leverages FFmpeg to perform video/audio cutting, format conversion, and compression. Perfect for handling video files for messaging apps with file size limits."
      },
      {
        "title": "Capabilities",
        "body": "Video Cutting: Split video/audio by time range\nFormat Conversion: Convert between video/audio formats (mp4, avi, mp3, wav, etc.)\nVideo Compression: Compress videos with adjustable bitrate\nFrame Extraction: Extract frames from videos at specified intervals\nAudio Extraction: Extract audio track from video\nAudio Replacement: Replace or mix audio in video\nText Watermark: Add text overlay on video (requires freetype)\nSubtitle: Add .srt/.ass subtitle files to video"
      },
      {
        "title": "Use Cases",
        "body": "Compress videos to send via WeChat/Lark/Telegram (16MB limit)\nExtract screenshots from videos for analysis\nConvert video formats for different platforms\nCut specific segments from long videos"
      },
      {
        "title": "System Requirements",
        "body": "FFmpeg installed and available in PATH\nPython 3.7+"
      },
      {
        "title": "Python Dependencies",
        "body": "None (uses subprocess to call ffmpeg)"
      },
      {
        "title": "Installation",
        "body": "Ensure FFmpeg is installed on your system:\n\nmacOS: brew install ffmpeg\nUbuntu: sudo apt install ffmpeg\nWindows: Download from ffmpeg.org or winget install ffmpeg\n\n\n\nPlace the skill files in your workspace:\n~/openclaw-workspace/skills/cutmv-video-tool/\n├── SKILL.md\n├── skill.py\n├── README.md\n└── README-CN.md"
      },
      {
        "title": "Python API",
        "body": "from skill import VideoTool\n\ntool = VideoTool()\n\n# Compress video for messaging\ntool.compress(\"input.mp4\", \"output.mp4\", bitrate=\"1000k\")\n\n# Cut video segment\ntool.cut(\"input.mp4\", \"clip.mp4\", start_time=30, end_time=90)\n\n# Convert format\ntool.convert(\"input.mp4\", \"output.avi\", \"avi\")\n\n# Extract frames every 10 seconds\ntool.extract_frames(\"input.mp4\", \"./frames/\", interval=10)"
      },
      {
        "title": "CLI Usage",
        "body": "# Compress video\npython skill.py compress input.mp4 output.mp4 1000k\n\n# Cut video\npython skill.py cut input.mp4 clip.mp4 0 60\n\n# Convert format\npython skill.py convert input.mp4 output.mp3 mp3"
      },
      {
        "title": "Configuration",
        "body": "No additional configuration required. The skill uses system FFmpeg installation."
      },
      {
        "title": "Testing",
        "body": "Run the built-in tests:\n\npython skill.py test"
      },
      {
        "title": "License",
        "body": "MIT License"
      },
      {
        "title": "Author",
        "body": "Isaac (@QiaoTuCodes)"
      },
      {
        "title": "Acknowledgments",
        "body": "OpenClaw team for the platform\nFFmpeg team for media processing tools\n\nAuthor Identity: yanyan@3c3d77679723a2fe95d3faf9d2c2e5a65559acbc97fef1ef37783514a80ae453"
      }
    ],
    "body": "SKILL.md - cutmv Video Tool\nSkill Name\n\ncutmv-video-tool\n\nDescription\n\nA video processing skill for OpenClaw that leverages FFmpeg to perform video/audio cutting, format conversion, and compression. Perfect for handling video files for messaging apps with file size limits.\n\nCapabilities\nVideo Cutting: Split video/audio by time range\nFormat Conversion: Convert between video/audio formats (mp4, avi, mp3, wav, etc.)\nVideo Compression: Compress videos with adjustable bitrate\nFrame Extraction: Extract frames from videos at specified intervals\nAudio Extraction: Extract audio track from video\nAudio Replacement: Replace or mix audio in video\nText Watermark: Add text overlay on video (requires freetype)\nSubtitle: Add .srt/.ass subtitle files to video\nUse Cases\nCompress videos to send via WeChat/Lark/Telegram (16MB limit)\nExtract screenshots from videos for analysis\nConvert video formats for different platforms\nCut specific segments from long videos\nRequirements\nSystem Requirements\nFFmpeg installed and available in PATH\nPython 3.7+\nPython Dependencies\nNone (uses subprocess to call ffmpeg)\nInstallation\n\nEnsure FFmpeg is installed on your system:\n\nmacOS: brew install ffmpeg\nUbuntu: sudo apt install ffmpeg\nWindows: Download from ffmpeg.org or winget install ffmpeg\n\nPlace the skill files in your workspace:\n\n~/openclaw-workspace/skills/cutmv-video-tool/\n├── SKILL.md\n├── skill.py\n├── README.md\n└── README-CN.md\n\nUsage\nPython API\nfrom skill import VideoTool\n\ntool = VideoTool()\n\n# Compress video for messaging\ntool.compress(\"input.mp4\", \"output.mp4\", bitrate=\"1000k\")\n\n# Cut video segment\ntool.cut(\"input.mp4\", \"clip.mp4\", start_time=30, end_time=90)\n\n# Convert format\ntool.convert(\"input.mp4\", \"output.avi\", \"avi\")\n\n# Extract frames every 10 seconds\ntool.extract_frames(\"input.mp4\", \"./frames/\", interval=10)\n\nCLI Usage\n# Compress video\npython skill.py compress input.mp4 output.mp4 1000k\n\n# Cut video\npython skill.py cut input.mp4 clip.mp4 0 60\n\n# Convert format\npython skill.py convert input.mp4 output.mp3 mp3\n\nConfiguration\n\nNo additional configuration required. The skill uses system FFmpeg installation.\n\nTesting\n\nRun the built-in tests:\n\npython skill.py test\n\nLicense\n\nMIT License\n\nAuthor\nIsaac (@QiaoTuCodes)\nAcknowledgments\nOpenClaw team for the platform\nFFmpeg team for media processing tools\n\nAuthor Identity: yanyan@3c3d77679723a2fe95d3faf9d2c2e5a65559acbc97fef1ef37783514a80ae453"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/QiaoTuCodes/cutmv-video-tool",
    "publisherUrl": "https://clawhub.ai/QiaoTuCodes/cutmv-video-tool",
    "owner": "QiaoTuCodes",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/cutmv-video-tool",
    "downloadUrl": "https://openagent3.xyz/downloads/cutmv-video-tool",
    "agentUrl": "https://openagent3.xyz/skills/cutmv-video-tool/agent",
    "manifestUrl": "https://openagent3.xyz/skills/cutmv-video-tool/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/cutmv-video-tool/agent.md"
  }
}