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
想直接用这个技能?
本站把开放许可(MIT / Apache 等)的技能按仓库打包整理到网盘,点一下转存到你自己的网盘,不用一个个从 GitHub 拉。许可未声明的技能只给原始仓库链接,不打包。