Skip to main content
Every audio file generated by Chatterbox includes imperceptible neural watermarks using Resemble AI’s PerTh (Perceptual Threshold) watermarking technology. This ensures AI-generated content can be identified and traced while maintaining audio quality.

What is PerTh Watermarking?

PerTh is a neural watermarking system that embeds imperceptible markers into audio during generation. These watermarks:
  • Are inaudible to human listeners
  • Survive MP3 compression and format conversion
  • Persist through audio editing and manipulation
  • Maintain nearly 100% detection accuracy
  • Don’t degrade audio quality
Automatic Application: Watermarking is applied automatically to all Chatterbox-generated audio. You don’t need to enable it—every output is watermarked by default.

Why Watermarking Matters

AI-generated audio can be misused for:
  • Impersonation and fraud
  • Spreading misinformation
  • Creating deepfakes
  • Unauthorized voice cloning
Watermarking enables:
  • Detection of AI-generated content
  • Verification of audio authenticity
  • Attribution to Chatterbox TTS
  • Accountability in content creation
Ethical Responsibility: Just because you can clone any voice doesn’t mean you should. Always obtain proper consent before cloning someone’s voice, and use the technology responsibly.

How Watermarking Works

The watermark is embedded during audio generation:
The watermarking happens inside the generate() method:
Every model variant (Turbo, Standard, Multilingual) applies watermarking automatically.

Detecting Watermarks

You can check if audio contains a Chatterbox watermark using the PerTh library.
1

Install PerTh

PerTh is included as a dependency with Chatterbox, but you can install it separately:
2

Load the audio file

Use librosa to load the audio you want to check:
3

Initialize the watermarker

Create a watermarker instance (same as used for embedding):
4

Extract the watermark

Check for the watermark presence:

Complete Detection Example

Here’s the full detection script from the README:
From README.md (lines 126-142)

Detection Accuracy

PerTh watermarks maintain nearly 100% detection accuracy even after:

Format Conversion

Audio Editing

  • Volume adjustments
  • Normalization
  • Equalization
  • Trimming/cutting
  • Concatenation

Common Manipulations

  • Speed changes (within reason)
  • Pitch shifting
  • Adding background music
  • Adding effects (reverb, echo, etc.)
Robustness: While PerTh watermarks are very robust, extreme audio degradation (heavy distortion, very low bitrates, multiple re-encodings) may reduce detection reliability.

Responsible AI Practices

Do:

Obtain consent before cloning someone’s voice ✓ Disclose when audio is AI-generated ✓ Respect privacy and intellectual property rights ✓ Use for legitimate purposes (accessibility, localization, etc.) ✓ Verify authenticity of audio when in doubt ✓ Keep watermarking enabled (it’s automatic)

Don’t:

✗ Clone voices without permission ✗ Create misleading or deceptive content ✗ Impersonate others for fraud or harm ✗ Use for harassment or abuse ✗ Spread misinformation or disinformation ✗ Attempt to remove watermarks
Legal Implications: Unauthorized voice cloning and misuse of AI-generated audio may violate laws regarding fraud, impersonation, copyright, and privacy. Always consult legal counsel if you’re unsure about your use case.

Legitimate Use Cases

Chatterbox and voice cloning technology have many beneficial applications:

Accessibility

  • Text-to-speech for visually impaired users
  • Voice restoration for people who have lost their voice
  • Personalized assistive technology

Content Creation

  • Audiobook narration
  • Video voiceovers
  • Podcast production
  • Game character voices (with actor consent)

Localization & Translation

  • Dubbing content into multiple languages
  • Maintaining voice consistency across translations
  • Global content accessibility

Voice Agents & Assistants

  • Customer service bots
  • Virtual assistants
  • Interactive voice response (IVR)
  • Conversational AI

Watermark Verification Service

For applications requiring verified detection, consider implementing a verification service:

Watermarking Across Models

All three Chatterbox models use the same watermarking system:
The watermarking implementation is identical across all models (from tts.py line 271, tts_turbo.py line 295, mtl_tts.py line 300).

Technical Details

Watermark Properties

  • Type: Implicit neural watermark
  • Perceptibility: Inaudible to humans
  • Robustness: Survives compression and editing
  • Output: Binary (0.0 = no watermark, 1.0 = watermarked)
  • Detection: Real-time capable

Implementation

The watermarker is initialized once per model instance:
And applied to every generated audio:

Additional Resources

Disclaimer

From the Chatterbox README:
Don’t use this model to do bad things. Prompts are sourced from freely available data on the internet.
Important: The watermarking technology helps identify AI-generated audio but doesn’t prevent misuse. Users are solely responsible for ensuring their use of Chatterbox complies with applicable laws and respects others’ rights.

Detecting Non-Watermarked Audio

If you encounter audio that might be from Chatterbox but shows no watermark:
  1. Check for tampering - The audio may have been modified to remove watermarks
  2. Verify the source - Ensure the audio came from a Chatterbox model
  3. Consider degradation - Extreme processing might reduce detection accuracy
  4. Report suspicious activity - Contact Resemble AI if you suspect watermark removal attempts

Summary

Chatterbox’s built-in PerTh watermarking provides:
  • ✅ Automatic, imperceptible watermarks on all generated audio
  • ✅ Nearly 100% detection accuracy
  • ✅ Robustness against compression and editing
  • ✅ Simple detection API
  • ✅ Support for responsible AI practices
Use this technology ethically and responsibly. Always obtain consent, disclose AI generation, and respect others’ rights.