You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

By requesting access you agree to follow our data use policies.

Log in or Sign Up to review the conditions and access this dataset content.

Podcast Transcripts

Speaker-diarized transcripts from ~100k podcast episodes and YouTube videos (~45k hours of audio).

This dataset will be gated. Only people who are part of our team may access.

Splits

Config Rows Description
shows 124 Channels / podcast feeds (name, description, hosts, links)
episodes 99,862 Episode/video metadata (title, description, guests, tags, dates)
transcripts 99,862 ASR transcripts with diarized segments + YouTube official captions where available (~52%)

Load

from datasets import load_dataset

ds = load_dataset("hudsongouge/Podcast-Transcripts-Raw")

shows = ds["shows"]
episodes = ds["episodes"]
transcripts = ds["transcripts"]

Or load configs individually:

episodes = load_dataset("hudsongouge/Podcast-Transcripts-Raw", "episodes", split="train")

Schema notes

Nested fields (hosts, guests, segments, official_transcript, metadata, etc.) are stored as JSON strings in Parquet. Parse with json.loads(row["metadata"]).

official_transcript (when present) contains publisher-provided captions — YouTube manual/auto subs with timed segments and plain text.

Links

  • episodes.episode_idtranscripts.episode_id
  • episodes.show_idshows.show_id
Downloads last month
45