clipbot-ffmpeg / README.md
imspsycho's picture
Update README.md
51bb6a0 verified
---
title: ClipBot FFmpeg Service
emoji: 🎬
colorFrom: purple
colorTo: blue
sdk: docker
pinned: false
---
# ClipBot FFmpeg Service
Split-screen video processor for ClipBot pipeline.
## API Endpoints
- `POST /clip` β€” start split-screen job
- `GET /job/<id>` β€” poll job status
- `GET /download/<filename>` β€” download output file
- `POST /upload_gameplay` β€” upload gameplay clips
- `GET /health` β€” health check
## Usage from VPS clipbot_api.py
```python
HF_CLIP_URL = "https://YOUR-SPACE.hf.space"
# Send to HuggingFace for processing
response = requests.post(f"{HF_CLIP_URL}/clip", json={
"videoId": video_id,
"mainVideoUrl": f"http://YOUR_VPS_IP:5000/serve/{video_id}",
"gameplayUrl": "https://YOUR-SPACE.hf.space/gameplay/1.mp4",
"duration": 58
})
```