UNPKG

subforge

Version:

High-performance subtitle toolkit for parsing, converting, and authoring across 20+ formats.

13 lines (11 loc) 337 B
/** * RealText format support * * RealText is a RealNetworks format for streaming subtitles. * It uses XML-like markup with window and time tags for synchronization. * * @module realtext */ export { parseTime, formatTime } from './time.ts' export { parseRealText } from './parser.ts' export { toRealText } from './serializer.ts'