Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
Domain: AI Audio / Voice Cloning Version: 1.0.0 Last Updated: 2026-04-15 Author: Alex (Master Alex) Related: text-to-speech (generation), visual-memory (photos)
Overview
Store voice samples for TTS voice cloning in a portable, version-controlled format. Unlike visual memory (base64 inline), audio files are stored as files with JSON metadata — audio is too large to embed sensibly.
Content: Natural speech with varied intonation (not monotone reading)
Quality: Clear audio, no background noise, no music
Format: WAV 16kHz+ or MP3
Recording Tips
Use a quiet room with minimal echo
Speak naturally — include some pauses, varied pitch
Avoid reading monotonously — conversational tone works best
Keep microphone at consistent distance (~6-12 inches)
Include a variety of sounds (different vowels, consonants)
Example Recording Script
"Hello, I'm [Name]. Today I want to share some thoughts about technology and how it shapes our daily lives. The key is finding balance — embracing innovation while staying grounded in what matters most."
Adding a Voice Sample
Step 1: Record the Sample
# Recommended: Use Audacity, Voice Memos (macOS), or Windows Voice Recorder
# Export as WAV, 22kHz or 44.1kHz, mono
{"voices":{"<name>":{"description":"Brief description of the voice character","audioFile":"voices/<name>-sample.wav","duration":"10s","sampleRate":"22050","language":"en-US","preferredModel":"chatterbox-turbo"}}}
Step 4: Test the Clone
importReplicatefrom"replicate";
const replicate = newReplicate();
const output = await replicate.run("resemble-ai/chatterbox-turbo", {
input: {
text: "Testing the voice clone. This should sound like the reference sample.",
audio_prompt: fs.readFileSync("voices/<name>-sample.wav"),
},
});
console.log("Generated audio:", output);