Veed | Fabric 1.0. Generate videos from image and audio inputs using Veed Fabric 1.0. Triggers: veed, fabric, image to video, audio video, veed fabric
Scanned 9/8/2026
Install to Claude Code
npx -y skills add awesome-genmedia/skills --skill veed-fabric-1-0 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Veed Fabric 1 0?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/awesome-genmedia-veed-fabric-1-0)More formats (shields.io, HTML) on the badges page.
---
name: veed-fabric-1-0
description: "Veed | Fabric 1.0. Generate videos from image and audio inputs using Veed Fabric 1.0. Triggers: veed, fabric, image to video, audio video, veed fabric"
allowed-tools: Bash(curl *), WebFetch
---
# Veed | Fabric 1.0
Generate videos by combining image and audio inputs using Veed Fabric 1.0. Create talking head videos or animated scenes by providing a source image and optional audio track.
## Quick Start
> Requires an each::labs API key. Get one at [eachlabs.ai](https://eachlabs.ai).
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "veed-fabric-1-0",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/headshot.jpg",
"audio_url": "https://example.com/speech-clip.mp3",
"resolution": "720p"
}
}'
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| audio_url | string | | URL of the audio file to sync with the video |
| image_url | string | | URL of the source image |
| resolution | string | 720p | Resolution of the output video. enum: 480p, 720p |
## Examples
**Talking head video:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "veed-fabric-1-0",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/presenter.jpg",
"audio_url": "https://example.com/narration.mp3",
"resolution": "720p"
}
}'
```
**Quick preview at lower resolution:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "veed-fabric-1-0",
"version": "0.0.1",
"input": {
"image_url": "https://example.com/avatar.jpg",
"audio_url": "https://example.com/greeting.wav",
"resolution": "480p"
}
}'
```
## Related Models
- [heygen-video-translate](../heygen-video-translate/) - Video translation with lip-sync
- [elevenlabs-text-to-dialogue](../elevenlabs-text-to-dialogue/) - Generate audio for Fabric input
## Documentation
- [each::labs Docs](https://docs.eachlabs.ai)
- [API Reference](https://docs.eachlabs.ai/api/overview)
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!