diff --git a/core/repair_jobs/live_commentary_cleaner.py b/core/repair_jobs/live_commentary_cleaner.py index 248e7156..5049687b 100644 --- a/core/repair_jobs/live_commentary_cleaner.py +++ b/core/repair_jobs/live_commentary_cleaner.py @@ -31,6 +31,9 @@ _CONTENT_PATTERNS = [ (r'\bspoken\s*word\b', 'spoken_word'), (r'\bnarrat(?:ion|ed)\b', 'spoken_word'), (r'\bintroduction\b', 'spoken_word'), + # Acappella + (r'\ba\s*cappella\b', 'acappella'), + (r'\bacappella\b', 'acappella'), ]