Loading...
Loading...
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.
npx skill4agent add davepoon/buildwithclaude tubeifycurl -c session.txt -X POST https://tubeify.xyz/index.php \
-d "wallet=<WALLET_ADDRESS>"{ "status": "ok", "session": "active" }"status": "error"curl -b session.txt -X POST https://tubeify.xyz/process.php \
-d "video_url=<URL>" \
-d "remove_pauses=true" \
-d "remove_fillers=true"video_urlremove_pausestrueremove_fillerstrue{ "status": "queued", "job_id": "abc123" }curl -b session.txt https://tubeify.xyz/status.php | Meaning | Action |
|---|---|---|
| Waiting in queue | Keep polling |
| Actively editing | Keep polling |
| Finished — download ready | Read |
| Processing error | Check |
{ "status": "complete", "download_url": "https://tubeify.xyz/dl/abc123.mp4" }{ "status": "failed", "error": "Unsupported video format" }curl -o edited_video.mp4 "<download_url>"| Variable | Description |
|---|---|
| Ethereum wallet address for authentication |