Skip to content

Podlove Simple Chapters Namespace Reference

The Podlove Simple Chapters (PSC) namespace provides structured chapter information for podcasts and other media, allowing creators to define timed segments with titles, links, and images.

Namespace URIhttp://podlove.org/simple-chapters
SpecificationPodlove Simple Chapters
Prefix<psc:*>
Available inRSS, Atom
Propertypsc

Structure

ts
export namespace PscNs {
  export type Chapter = {
    start: string
    title: string
    href?: string
    image?: string
  }

  export type Item = {
    chapters?: Array<Chapter>
  }
}