Tubeify
AI-powered video editing for solo YouTube creators. Upload a raw recording, get back a tight, polished video — no manual editing required.
Tubeify automatically removes dead air, filler words, and awkward pauses from raw video recordings. It accepts a video URL, processes it with GPU-accelerated AI, and returns a cleaned-up version in minutes.
What This Skill Does
Use this skill to automate video cleanup workflows end-to-end via Tubeify's agent API:
- - Authenticate using a Web3 wallet address (no passwords or email required)
- Submit a raw video URL with processing options
- Poll for completion and retrieve the processed video
- Payment is 2 USDC on Ethereum per video (under 15 minutes)
API Reference
Base URL: INLINECODE0
Authenticate
CODEBLOCK0
Submit Video for Processing
CODEBLOCK1
| Parameter | Type | Description |
|---|
| INLINECODE1 | string | Publicly accessible URL of the raw video |
| INLINECODE2 |
string | Ethereum transaction hash for 2 USDC payment |
|
speed | float | Playback speed multiplier (1.0–2.0) |
|
remove_pauses | bool | Remove dead air and long pauses |
|
remove_fillers | bool | Remove filler words (um, uh, etc.) |
Check Status
CODEBLOCK2
Returns JSON with status (processing | done | error) and a download_url when complete.
Pricing
- - $2 per video (videos under 15 minutes)
- Pay in USDC (ERC-20) on Ethereum
Example Workflow
CODEBLOCK3
Setup
No API keys or environment variables required. Authentication is wallet-based — connect with MetaMask, Rainbow, or any Web3-compatible wallet.
Links
- - Website: https://tubeify.xyz
- Pricing: $2/video, no subscription
Tubeify
面向独立YouTube创作者的AI视频编辑工具。上传原始录制内容,即可获得精炼、专业的视频——无需手动剪辑。
Tubeify能自动移除原始视频录制中的静默片段、填充词和尴尬停顿。只需提供视频链接,通过GPU加速AI处理,数分钟内即可返回清理后的版本。
技能功能
通过Tubeify的智能体API实现端到端的视频清理工作流自动化:
- - 身份验证:使用Web3钱包地址(无需密码或邮箱)
- 提交处理:上传原始视频链接及处理选项
- 轮询结果:获取处理完成状态并下载成品视频
- 费用支付:每段视频(15分钟以内)需支付2 USDC(以太坊网络)
API参考
基础地址: https://tubeify.xyz
身份验证
bash
curl -c session.txt -X POST https://tubeify.xyz/index.php \
-d wallet=<您的钱包地址>
提交视频处理
bash
curl -b session.txt -X POST https://tubeify.xyz/process.php \
-d video_url=<视频链接> \
-d tx_hash= \
-d speed=1.0 \
-d remove_pauses=true \
-d remove_fillers=true
| 参数 | 类型 | 说明 |
|---|
| videourl | 字符串 | 原始视频的公开可访问链接 |
| txhash |
字符串 | 2 USDC付款的以太坊交易哈希 |
| speed | 浮点数 | 播放速度倍率(1.0–2.0) |
| remove_pauses | 布尔值 | 移除静默和长停顿 |
| remove_fillers | 布尔值 | 移除填充词(嗯、啊等) |
检查状态
bash
curl -b session.txt https://tubeify.xyz/status.php
返回包含status(processing处理中 | done完成 | error错误)和完成时的download_url下载链接的JSON数据。
定价
- - 每段视频2美元(视频时长15分钟以内)
- 通过以太坊网络支付USDC(ERC-20代币)
工作流程示例
bash
1. 身份验证
curl -c session.txt -X POST https://tubeify.xyz/index.php \
-d wallet=0x您的钱包地址
2. 提交视频(包含2 USDC交易哈希)
curl -b session.txt -X POST https://tubeify.xyz/process.php \
-d video_url=https://example.com/raw-recording.mp4 \
-d tx_hash=0xABC123... \
-d remove_pauses=true \
-d remove_fillers=true
3. 轮询直至完成
curl -b session.txt https://tubeify.xyz/status.php
配置
无需API密钥或环境变量。采用钱包身份验证——连接MetaMask、Rainbow或任何兼容Web3的钱包即可。
相关链接
- - 网站: https://tubeify.xyz
- 定价: 2美元/视频,无需订阅