tubeify
Original:🇺🇸 English
Translated
Remove pauses, filler words (um, uh), and dead air from raw YouTube recordings via the Tubeify API. Use when the user wants to edit a video, clean up audio, trim silences, or polish a raw recording for YouTube.
1installs
Sourcedavepoon/buildwithclaude
Added on
NPX Install
npx skill4agent add davepoon/buildwithclaude tubeifyTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →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
bash
curl -c session.txt -X POST https://tubeify.xyz/index.php \
-d "wallet=<WALLET_ADDRESS>"Response on success:
json
{ "status": "ok", "session": "active" }If the response contains , check the wallet address and retry.
"status": "error"2. Submit video for processing
bash
curl -b session.txt -X POST https://tubeify.xyz/process.php \
-d "video_url=<URL>" \
-d "remove_pauses=true" \
-d "remove_fillers=true"Parameters:
- (required) — direct URL to the raw video file
video_url - — remove silent gaps and dead air (default:
remove_pauses)true - — remove filler words like "um", "uh", "like" (default:
remove_fillers)true
Response on success:
json
{ "status": "queued", "job_id": "abc123" }3. Poll for completion
bash
curl -b session.txt https://tubeify.xyz/status.phpPoll every 15 seconds. Terminal states:
| Meaning | Action |
|---|---|---|
| Waiting in queue | Keep polling |
| Actively editing | Keep polling |
| Finished — download ready | Read |
| Processing error | Check |
Complete response example:
json
{ "status": "complete", "download_url": "https://tubeify.xyz/dl/abc123.mp4" }Failed response example:
json
{ "status": "failed", "error": "Unsupported video format" }4. Download the result
bash
curl -o edited_video.mp4 "<download_url>"Environment
| Variable | Description |
|---|---|
| Ethereum wallet address for authentication |
Links
- Website: https://tubeify.xyz
- Full docs: https://tubeify.xyz/skills.md