# Bulk Reddit Post Cleaner for Batch TTS Voiceover

**Use case:** 

Reddit story channels pipe in an array of scraped posts and get every body cleaned, then split into sentences for batch TTS voiceover videos.

## Input

```json
{
  "text": "AITA for leaving? **So** here's the _story_. Check [this](https://x.com).\n\nEdit: thanks for the awards! TL;DR: I left.",
  "texts": [
    {
      "title": "TIFU by sending the wrong email",
      "selftext": "**TIFU** by replying-all to the whole office. _Massive_ mistake. Link: [proof](https://imgur.com/x). TL;DR: everyone saw it."
    },
    {
      "title": "AITA over the parking spot",
      "selftext": "AITA? My NB roommate took my spot again. IMO they should ask first. Edit: yes I talked to them."
    }
  ],
  "expandAbbreviations": true,
  "profanityMode": "keep",
  "wpm": 150
}
```

## Output

```json
{
  "cleaned": {
    "label": "Cleaned"
  },
  "wordCount": {
    "label": "Word count"
  },
  "sentenceCount": {
    "label": "Sentence count"
  },
  "readTimeSeconds": {
    "label": "Read time seconds"
  },
  "hookScore": {
    "label": "Hook score"
  }
}
```

## About this Actor

This example demonstrates how to use [Reddit Text Cleaner — TTS-Ready Narration](https://apify.com/dami_studio/reddit-text-cleaner) with a specific input configuration. Visit the [Actor detail page](https://apify.com/dami_studio/reddit-text-cleaner) to learn more, explore other use cases, and run it yourself.