Doubao Capture

v1.0.6

Capture Doubao translation results with auto-scroll and auto-end detection.

0· 400·5 current·5 all-time

Install

OpenClaw Prompt Flow

Install with OpenClaw

Best for remote or guided setup. Copy the exact prompt, then paste it into OpenClaw for banner90/doubao-capture.

Previewing Install & Setup.
Prompt PreviewInstall & Setup
Install the skill "Doubao Capture" (banner90/doubao-capture) from ClawHub.
Skill page: https://clawhub.ai/banner90/doubao-capture
Keep the work scoped to this skill only.
After install, inspect the skill metadata and help me finish setup.
Use only the metadata you can verify from ClawHub; do not invent missing requirements.
Ask before making any broader environment changes.

Command Line

CLI Commands

Use the direct CLI path if you want to install manually and keep every step visible.

OpenClaw CLI

Canonical install target

openclaw skills install banner90/doubao-capture

ClawHub CLI

Package manager switcher

npx clawhub@latest install doubao-capture
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
high confidence
Purpose & Capability
The name/description (capture Doubao translation output) match the SKILL.md instructions (run a local Python script to capture translated subtitles). No unrelated credentials, binaries, or network endpoints are requested.
Instruction Scope
Instructions are narrowly scoped to running a local script via WSL/python.exe with a provided HWND and writing output to a Windows 'works/' directory. They reference only UI automation constraints (visible desktop) and the expected integration inputs (window_handle from doubao-launch). Note: the skill assumes the presence of the script 'scripts/capture_doubao_scroll_v2.py' on the host; the package itself does not include that script.
Install Mechanism
No install spec and no downloads — instruction-only — so nothing is written by the skill bundle itself. This is low-risk, but it relies on an external/local script already present on the machine (openclaw.plugin.json entry points at /mnt/h/AI/.../capture_doubao_scroll_v2.py).
Credentials
The skill requests no environment variables, credentials, or config paths. It only references common Windows/WSL paths and an output directory appropriate for the stated task.
Persistence & Privilege
always is false and the skill does not request permanent presence or modify other skill/system configs. It will run only when invoked and relies on local GUI automation capabilities.
Assessment
This skill is instruction-only and does not include the actual Python script it instructs you to run — it points to a script on your H: drive via WSL. Before using: (1) verify that scripts/capture_doubao_scroll_v2.py exists on the referenced path and inspect its contents to ensure it does only the expected GUI capture and file output (no hidden network calls or credential reads); (2) ensure you trust the source of that script and the other workflow skills (doubao-launch, audio-play); (3) be aware it requires a visible Windows desktop and will interact with the GUI; (4) run it in a controlled environment (sandbox or VM) if you are unsure. If you cannot inspect the script, avoid granting it access to sensitive directories or running it with elevated privileges.

Like a lobster shell, security has layers — review code before you run it.

latestvk97e0ps1pmxp5pmjprfe5ewkdh82htp3
400downloads
0stars
7versions
Updated 1mo ago
v1.0.6
MIT-0

Doubao Capture

Usage

python scripts/capture_doubao_scroll_v2.py --hwnd <window_handle> --output-dir <dir> --stop-auto --json-output

Parameters

  • window_handle (required): HWND from doubao-launch
  • output_dir (optional): Output directory, default: "works/translations"
  • stop_auto (optional): Auto-detect end, default: true
  • no_new_threshold (optional): Consecutive empty reads threshold, default: 5

Returns

{
  "success": true,
  "text_file_path": "H:/works/translations/doubao_20240307_143022.txt",
  "line_count": 156,
  "char_count": 3847,
  "stopped_by": "auto_detect"
}

Tools

capture_translation

Capture translated subtitles from Doubao

Workflow Integration

This skill is part of the YouTube translation workflow:

  1. youtube-audio-download: Download audio from YouTube
  2. doubao-launch: Launch Doubao translation window
  3. audio-play: Play the downloaded audio
  4. doubao-capture: Capture translated subtitles

Execution

All skills execute on Windows Python via WSL cross-platform call:

wsl -> python.exe scripts/capture_doubao_scroll_v2.py ...

Error Handling

All skills return JSON with success field:

  • success: true - Operation completed
  • success: false - Check error_code and error_message

Notes

  • Windows GUI automation requires visible desktop (no RDP disconnect)
  • Output files are stored in Windows works/ directory
  • WSL accesses Windows files via /mnt/h/...

Comments

Loading comments...