Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
davepoon avatar

Tubeify

  • 64 installs
  • 3.2k repo stars
  • Updated August 2, 2026
  • davepoon/buildwithclaude

Submit a raw recording URL to the Tubeify API and get back a trimmed video with pauses, filler words, and dead air removed.

About

Sends a raw video URL to the Tubeify API and polls for a cleaned, trimmed result with silences and filler words stripped. A developer uses it to auto-polish raw YouTube recordings without manual editing.

  • Toggle remove_pauses and remove_fillers per job
  • Wallet-based auth, then poll status until download_url is ready

Tubeify by the numbers

  • 64 all-time installs (skills.sh)
  • Ranked #857 of 1,337 Generative Media skills by installs in the Skillselion catalog
  • Data as of Aug 3, 2026 (Skillselion catalog sync)
npx skills add https://github.com/davepoon/buildwithclaude --skill tubeify

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs64
repo stars3.2k
Last updatedAugust 2, 2026
Repositorydavepoon/buildwithclaude

What it does

Submit a raw recording URL to the Tubeify API and get back a trimmed video with pauses, filler words, and dead air removed.

Files

SKILL.mdMarkdownGitHub ↗

Tubeify

Submit a raw recording URL to the Tubeify API and get back a polished, trimmed video with pauses, filler words, and dead air removed automatically.

Workflow

1. Authenticate

curl -c session.txt -X POST https://tubeify.xyz/index.php \
  -d "wallet=<WALLET_ADDRESS>"

Response on success:

{ "status": "ok", "session": "active" }

If the response contains "status": "error", check the wallet address and retry.

2. Submit video for processing

curl -b session.txt -X POST https://tubeify.xyz/process.php \
  -d "video_url=<URL>" \
  -d "remove_pauses=true" \
  -d "remove_fillers=true"

Parameters:

  • video_url (required) — direct URL to the raw video file
  • remove_pauses — remove silent gaps and dead air (default: true)
  • remove_fillers — remove filler words like "um", "uh", "like" (default: true)

Response on success:

{ "status": "queued", "job_id": "abc123" }

3. Poll for completion

curl -b session.txt https://tubeify.xyz/status.php

Poll every 15 seconds. Terminal states:

statusMeaningAction
queuedWaiting in queueKeep polling
processingActively editingKeep polling
completeFinished — download readyRead download_url from body
failedProcessing errorCheck error field, retry

Complete response example:

{ "status": "complete", "download_url": "https://tubeify.xyz/dl/abc123.mp4" }

Failed response example:

{ "status": "failed", "error": "Unsupported video format" }

4. Download the result

curl -o edited_video.mp4 "<download_url>"

Environment

VariableDescription
TUBEIFY_WALLETEthereum wallet address for authentication

Links

  • Website: https://tubeify.xyz
  • Full docs: https://tubeify.xyz/skills.md

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.