tubeify
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 fileremove_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:
status |
Meaning | Action |
|---|---|---|
queued |
Waiting in queue | Keep polling |
processing |
Actively editing | Keep polling |
complete |
Finished — download ready | Read download_url from body |
failed |
Processing error | Check 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
| Variable | Description |
|---|---|
TUBEIFY_WALLET |
Ethereum wallet address for authentication |
Links
- Website: https://tubeify.xyz
- Full docs: https://tubeify.xyz/skills.md
More from davepoon/buildwithclaude
file-organizer
Intelligently organizes your files and folders across your computer by understanding context, finding duplicates, suggesting better structures, and automating cleanup tasks. Reduces cognitive load and keeps your digital workspace tidy without manual effort.
212xlsx
Comprehensive spreadsheet creation, editing, and analysis with support for formulas, formatting, data analysis, and visualization. When Claude needs to work with spreadsheets (.xlsx, .xlsm, .csv, .tsv, etc) for: (1) Creating new spreadsheets with formulas and formatting, (2) Reading or analyzing data, (3) Modify existing spreadsheets while preserving formulas, (4) Data analysis and visualization in spreadsheets, or (5) Recalculating formulas
187content-research-writer
Assists in writing high-quality content by conducting research, adding citations, improving hooks, iterating on outlines, and providing real-time feedback on each section. Transforms your writing process from solo effort to collaborative partnership.
141docx
Comprehensive document creation, editing, and analysis with support for tracked changes, comments, formatting preservation, and text extraction. When Claude needs to work with professional documents (.docx files) for: (1) Creating new documents, (2) Modifying or editing content, (3) Working with tracked changes, (4) Adding comments, or any other document tasks
122auth-patterns
This skill should be used when the user asks about "authentication in Next.js", "NextAuth", "Auth.js", "middleware auth", "protected routes", "session management", "JWT", "login flow", or needs guidance on implementing authentication and authorization in Next.js applications.
104server-actions
This skill should be used when the user asks about "Server Actions", "form handling in Next.js", "mutations", "useFormState", "useFormStatus", "revalidatePath", "revalidateTag", or needs guidance on data mutations and form submissions in Next.js App Router.
100