Loading…
Put it all together — record your voice, modify it, clone it with AI, then try to detect which is real vs AI vs modified.
Record yourself reading the script above, then visualize your voice with a spectrogram and review the audio statistics. This gives you a baseline to compare against when you start modifying and cloning your voice in the next steps.
# Navigate to working directory cd ~/callcentervillage/voice-cloning # Record yourself reading the script above (~20 seconds) # You can also use Audacity: Record → File → Export Audio → save as my_voice.wav rec -r 44100 -c 1 -b 16 my_voice.wav trim 0 20 # Generate a spectrogram sox my_voice.wav -n spectrogram -o spectrum.png # View the spectrogram in the terminal imgcat spectrum.png # View audio file info and statistics soxi my_voice.wav && sox my_voice.wav -n stat 2>&1
Satisfied with your knowledge? Continue to the next module.
Continue to Voice Agents