Rvc Dataset. Create RVC v2 datasets from audio files for voice model training. Triggers: rvc, dataset, voice, training data, voice cloning
Scanned 9/8/2026
Install to Claude Code
npx -y skills add awesome-genmedia/skills --skill rvc-dataset --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Rvc Dataset?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/awesome-genmedia-rvc-dataset)More formats (shields.io, HTML) on the badges page.
---
name: rvc-dataset
description: "Rvc Dataset. Create RVC v2 datasets from audio files for voice model training. Triggers: rvc, dataset, voice, training data, voice cloning"
allowed-tools: Bash(curl *), WebFetch
---
# Rvc Dataset
Create RVC v2 datasets from audio files. Outputs a zip file containing processed audio data ready for voice model training.
## 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": "rvc-dataset",
"version": "0.0.1",
"input": {
"audio_name": "my-voice-dataset",
"voice_url": "https://example.com/voice-sample.mp3"
}
}'
```
## Parameters
| Parameter | Type | Default | Description |
|-----------|------|---------|-------------|
| audio_name | string | false | Name of the dataset. Output will be a zip containing a folder named `dataset/{audio_name}`. |
| voice_url | string | | Voice URL to create your RVC v2 dataset from. Supports .mp3, .wav. |
## Examples
**Create dataset from MP3:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "rvc-dataset",
"version": "0.0.1",
"input": {
"audio_name": "singer-voice",
"voice_url": "https://example.com/singing-sample.mp3"
}
}'
```
**Create dataset from WAV:**
```bash
curl -X POST https://api.eachlabs.ai/v1/prediction \
-H "Content-Type: application/json" \
-H "X-API-Key: $EACHLABS_API_KEY" \
-d '{
"model": "rvc-dataset",
"version": "0.0.1",
"input": {
"audio_name": "narrator-voice",
"voice_url": "https://example.com/narration.wav"
}
}'
```
## Related Models
- [mureka-upload-file](../mureka-upload-file/) - Upload audio files for processing
- [mureka-create-speech](../mureka-create-speech/) - Speech generation
## 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!