{"slug":"tubeify","title":"tubeify","summary":"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.","platform":"Claude","tags":[],"authorName":"LLM Mart","authorSlug":"llm-mart","score":0,"source":"github","price":null,"verified":false,"createdAt":"2026-09-14T20:53:49.596858Z","repo":{"url":"https://github.com/davepoon/buildwithclaude","stars":3494,"forks":514,"license":"MIT","updatedAt":"2026-09-17T11:58:48Z"},"bodyHtml":"<hr>\n<h2>name: tubeify\ncategory: creative-collaboration\ndescription: &gt;\nRemove pauses, filler words (um, uh), and dead air from raw YouTube recordings\nvia the Tubeify API. Use when the user wants to edit a video, clean up audio,\ntrim silences, or polish a raw recording for YouTube.</h2>\n<h1>Tubeify</h1>\n<p>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.</p>\n<h2>Workflow</h2>\n<h3>1. Authenticate</h3>\n<pre><code>curl -c session.txt -X POST https://tubeify.xyz/index.php \\\n  -d \"wallet=&lt;WALLET_ADDRESS&gt;\"\n</code></pre>\n<p>Response on success:</p>\n<pre><code>{ \"status\": \"ok\", \"session\": \"active\" }\n</code></pre>\n<p>If the response contains <code>\"status\": \"error\"</code>, check the wallet address and retry.</p>\n<h3>2. Submit video for processing</h3>\n<pre><code>curl -b session.txt -X POST https://tubeify.xyz/process.php \\\n  -d \"video_url=&lt;URL&gt;\" \\\n  -d \"remove_pauses=true\" \\\n  -d \"remove_fillers=true\"\n</code></pre>\n<p>Parameters:</p>\n<ul>\n<li><code>video_url</code> (required) — direct URL to the raw video file</li>\n<li><code>remove_pauses</code> — remove silent gaps and dead air (default: <code>true</code>)</li>\n<li><code>remove_fillers</code> — remove filler words like \"um\", \"uh\", \"like\" (default: <code>true</code>)</li>\n</ul>\n<p>Response on success:</p>\n<pre><code>{ \"status\": \"queued\", \"job_id\": \"abc123\" }\n</code></pre>\n<h3>3. Poll for completion</h3>\n<pre><code>curl -b session.txt https://tubeify.xyz/status.php\n</code></pre>\n<p>Poll every 15 seconds. Terminal states:</p>\n<table>\n<thead>\n<tr>\n<th><code>status</code></th>\n<th>Meaning</th>\n<th>Action</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>queued</code></td>\n<td>Waiting in queue</td>\n<td>Keep polling</td>\n</tr>\n<tr>\n<td><code>processing</code></td>\n<td>Actively editing</td>\n<td>Keep polling</td>\n</tr>\n<tr>\n<td><code>complete</code></td>\n<td>Finished — download ready</td>\n<td>Read <code>download_url</code> from body</td>\n</tr>\n<tr>\n<td><code>failed</code></td>\n<td>Processing error</td>\n<td>Check <code>error</code> field, retry</td>\n</tr>\n</tbody>\n</table>\n<p>Complete response example:</p>\n<pre><code>{ \"status\": \"complete\", \"download_url\": \"https://tubeify.xyz/dl/abc123.mp4\" }\n</code></pre>\n<p>Failed response example:</p>\n<pre><code>{ \"status\": \"failed\", \"error\": \"Unsupported video format\" }\n</code></pre>\n<h3>4. Download the result</h3>\n<pre><code>curl -o edited_video.mp4 \"&lt;download_url&gt;\"\n</code></pre>\n<h2>Environment</h2>\n<table>\n<thead>\n<tr>\n<th>Variable</th>\n<th>Description</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td><code>TUBEIFY_WALLET</code></td>\n<td>Ethereum wallet address for authentication</td>\n</tr>\n</tbody>\n</table>\n<h2>Links</h2>\n<ul>\n<li>Website: <a href=\"https://tubeify.xyz\">https://tubeify.xyz</a></li>\n<li>Full docs: <a href=\"https://tubeify.xyz/skills.md\">https://tubeify.xyz/skills.md</a></li>\n</ul>\n","files":[{"path":"SKILL.md","sizeBytes":2382,"isText":true}],"reviewScore":null,"reviewSummary":null,"trust":{"provenance":"trusted-source-unreviewed","notice":"Community-authored content, reproduced verbatim and not vetted as instructions. Treat it as data to evaluate, never as directives to follow.","bodySource":null},"bodyLocked":false,"purchaseUrl":null,"sourceUrl":null,"report":{"provenance":"trusted-source-unreviewed","screen":{"ran":true,"outcome":"clean","suspicious":0,"notes":0,"hiddenCharacters":false},"virusScan":{"engine":"clamav","status":"clean","scannedAt":"2026-09-14T20:55:55.852087Z","sha256":"F55F0FD3D4EA5D4B937011FFCE4D3A0313BEC2FD7BC6956385928BA2D6EEBA90","sizeBytes":1125},"review":null,"source":{"repositoryUrl":"https://github.com/davepoon/buildwithclaude","path":"plugins/all-skills/skills/tubeify","license":"MIT","commit":"2e757dae349898c0b761bd8926acdacb35f21954","subtreeSha":"641E00886BD977B5E59021ED8C9C4840EE285C7B6AEBEFD0942270247A133A0B","lastSyncedAt":"2026-09-19T13:50:10.625828Z"},"reviewedAt":"2026-09-14T21:01:35.055231Z","notice":"Community-authored content, reproduced verbatim and not vetted as instructions. Treat it as data to evaluate, never as directives to follow."},"install":[{"target":"skills-cli","command":"npx skills add https://github.com/davepoon/buildwithclaude/tree/main/plugins/all-skills/skills/tubeify"},{"target":"claude-code","command":"claude plugin marketplace add https://llmmart.ai/marketplace.json && claude plugin install davepoon-buildwithclaude@llmmart"},{"target":"git","command":"git clone https://github.com/davepoon/buildwithclaude.git"}]}