# Scrape RSS.com podcast transcripts

**Use case:** 

Extract transcripts + episode metadata from RSS.com-hosted podcast feeds. Export-ready CSV/JSON.

## Input

```json
{
  "feedUrls": [
    "https://media.rss.com/your-show/feed.xml"
  ],
  "maxEpisodes": 25,
  "preferType": "srt",
  "transcriptFormats": [
    "txt"
  ],
  "monitorMode": false,
  "alertOnNewEpisode": true,
  "proxyConfiguration": {
    "useApifyProxy": true
  },
  "requestConcurrency": 5,
  "diagnose": false
}
```

## Output

```json
{
  "podcast": {
    "label": "Podcast",
    "format": "string"
  },
  "episode_title": {
    "label": "Episode",
    "format": "string"
  },
  "published": {
    "label": "Published",
    "format": "string"
  },
  "segment_count": {
    "label": "Segments",
    "format": "integer"
  },
  "transcript": {
    "label": "Transcript",
    "format": "string"
  },
  "episode_url": {
    "label": "URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Podcast Transcript Scraper — Any RSS Feed to Text & SRT](https://apify.com/scrapersdelight/podcast-transcript-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/scrapersdelight/podcast-transcript-scraper) to learn more, explore other use cases, and run it yourself.