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 URI | http://podlove.org/simple-chapters |
|---|---|
| Specification | Podlove Simple Chapters |
| Prefix | <psc:*> |
| Available in | RSS, Atom |
| Property | psc |
Structure
INFO
For details on type parameters (TStrict) and Requirable<T> markers, see TypeScript Reference.
ts
export namespace PscNs {
export type Chapter<TStrict extends boolean = false> = Strict<
{
start: Requirable<string> // Required in spec.
title: Requirable<string> // Required in spec.
href?: string
image?: string
},
TStrict
>
export type Item<TStrict extends boolean = false> = {
chapters?: Array<Chapter<TStrict>>
}
}Related
- iTunes Namespace - Traditional podcast metadata
- Podcast Namespace - Modern Podcasting 2.0 features
- Parsing Namespaces - How namespace parsing works