# Podcast Show Notes with Speaker Diarization

**Use case:** 

Generate structured show notes, chapters, and verbatim guest quotes from any podcast episode. Speaker-labeled transcript included.

## Input

```json
{
  "startUrls": [
    {
      "url": "https://example.com/episode.mp3"
    }
  ],
  "language": "auto",
  "diarize": true,
  "showNotesOptions": {
    "maxChapters": 8,
    "quotesCount": 5,
    "includeTimestamps": true
  },
  "exportFormats": [
    "txt",
    "srt"
  ],
  "maxPollSeconds": 240,
  "pollIntervalSeconds": 15
}
```

## Output

```json
{
  "url": {
    "label": "URL",
    "format": "string"
  },
  "status": {
    "label": "Status",
    "format": "string"
  },
  "language": {
    "label": "Language",
    "format": "string"
  },
  "durationSeconds": {
    "label": "Duration (s)",
    "format": "number"
  },
  "transcript_txt": {
    "label": "Transcript (TXT)",
    "format": "string"
  },
  "repurposed_show-notes": {
    "label": "Show Notes",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Podcast Show Notes Generator — AI Transcription & Chapters](https://apify.com/toshiusklay/wisprs-podcast-show-notes) with a specific input configuration. Visit the [Actor detail page](https://apify.com/toshiusklay/wisprs-podcast-show-notes) to learn more, explore other use cases, and run it yourself.