# Who signs off when AI gets it wrong
At 11:40pm, a clip of a well known podcast host "endorsing" a crypto scheme goes viral. The voice is his. The words are not. It's a synthetic clone, built from hours of publicly available interviews, and nobody at his network authorized it, because nobody at his network made it. By 8am, three million views, a furious talent agent, and a newsroom asking: whose problem is this?
This is not hypothetical. Voice cloning tools have made this scenario cheap and fast to execute, and media companies have already faced versions of it, from AI generated news anchors in Venezuela-linked disinformation campaigns to cloned celebrity voices in ads. The technology moved faster than the org charts. This lesson maps who is actually supposed to answer for it.
Assume the clone was made by a third party, not your company, but it's now spreading on your platform (a podcast host on your network, a streaming service hosting the clip, a social feed you operate). Within hours you need to answer:
1. Is this illegal, and where?
2. Do we take it down, and on what authority?
3. Who talks to the press?
4. Who talks to the talent or their lawyers?
5. What do we change so it doesn't happen again?
Each question routes to a different owner. That routing, decided in advance, is what "governance" actually means in practice. Governance here means the system of roles, approvals, and escalation paths that determines who has authority to decide and disclose, before a crisis forces an improvised answer.
The AI/ML risk or model risk team (where one exists, often only in larger media groups) owns a different question: did *our* systems contribute? Even if the clone was made externally, if your platform's recommendation algorithm amplified it, that's your model risk, not just a content moderation problem. This team should already maintain a risk register: a running log of where AI touches the product, what could go wrong, and how likely and severe each failure is.
Trust & safety / content standards own the takedown decision itself, applying platform policy. Most major platforms (YouTube, Meta, TikTok) now have explicit synthetic media policies requiring labels or removal for undisclosed realistic AI content. Your internal standards team should mirror or exceed those baselines.
Communications owns the public message, but only after legal and standards align on facts. Speaking too early, before you know if it's your model, a partner's, or a bad actor's, is how companies end up issuing three contradictory statements in one week.
The executive sponsor, typically a Chief Risk Officer, General Counsel, or increasingly a named "AI governance lead" or Chief AI Officer, is who ultimately signs off publicly and answers to the board. This person's job is not to know the technical details but to have owned the pre-crisis question: did we have the right guardrails in place before this happened? That's the question regulators and journalists will actually ask.
| Question | Primary owner | Escalates to |
|---|---|---|
| Is it illegal / actionable? | Legal/Compliance | General Counsel |
| Did our tech amplify it? | AI/Model risk team | CROCROConversion Rate Optimization (CRO) is the systematic practice of increasing the percentage of users who complete a desired action, using data, testing, and user research.Voir la définition complète → or Chief AI Officer |
| Do we remove it? | Trust & Safety | Chief AI Officer / GC |
| What do we say publicly? | Communications | CEO (final approval) |
| Did our controls fail? | Internal audit | Board risk committee |
Sign-off chains matter most in prevention, not just cleanup. Before deploying any generative voice, image, or video feature, mature media organizations run a pre-deployment checklist:
None of this is exotic. It mirrors long-standing model risk management practice from banking (the US Federal Reserve's SR 11-7 guidance) adapted for media: validate before deployment, monitor after, assign clear ownership throughout.
Vérification des acquis
1. In the podcast voice-clone scenario, what does 'governance' most precisely refer to?
2. A synthetic voice clone of a network's podcast host was created by a third party with no involvement from the network, then spread on the network's platform. Why does this still create an accountability problem for the network?
3. Why does the lesson emphasize that different questions in a crisis (legality, takedown authority, press response, talent relations, prevention) 'route to a different owner'?
4. Select ALL correct answers about the legal landscape for deepfakes described in the lesson.
Sélectionnez toutes les réponses correctes.
5. Select ALL correct answers about why the podcast host voice-clone scenario is presented as realistic rather than hypothetical.
Sélectionnez toutes les réponses correctes.
Two structural reasons. First, speed asymmetry: a clone can be made and posted in under an hour; legal review, by design, takes longer. Governance frameworks that assume you'll fully vet before publishing don't survive contact with virality.
Second, distributed responsibility: the clone might be made with an open-source tool, hosted by a cloud provider, posted by an anonymous account, amplified by a platform's algorithm, and covered by a news outlet, five different companies, none of whom individually "made" the harm. This is why the EU AI Act pushes obligations onto multiple points in the chain (providers, deployers, and distributors of AI systems each have duties) rather than one actor.
For a working understanding of how fast this space is moving, this explainer is a solid primer:
🎬 [VIDEO: "How AI Deepfakes Threaten Trust in Media" - youtube.com/results?search_query=ai+deepfakes+media+trust+explainer - search and pick a recent (2024-2025) explainer from a credible outlet like the BBC, Reuters, or WSJ covering deepfake detection and platform response]
Media teams increasingly run automated provenance checks before publishing user-submitted or AI-adjacent audio. A simplified version of what a trust & safety pipelinepipelineAll active sales opportunities across the stages of the sales process, together with their combined potential value and probability of closing.Voir la définition complète → flags:
if audio.has_c2pa_credential == False:
flag_for_review("no provenance metadata")
if voice_similarity_score(audio, protected_voice_db) > 0.85:
flag_for_review("possible unauthorized clone")
if audio.disclosed_as_synthetic == False and ai_generation_score > 0.7:
require_label("AI-generated content")This isn't a legal shield, it's a triage layer that routes suspicious content to the humans in the accountability chain above, faster.