UNPKG

@openanime/ass2esl

Version:

Utilities to convert Advanced SubStation Alpha (ASS) to Expressive Subtitle Language (ESL)

12 lines (9 loc) 396 B
import { Dialogue } from 'ass-compiler'; import { IdGenerator } from './id-generator.js'; import { ProcessedStyle } from './interfaces.js'; declare function processDialogues(dialogues: Dialogue[], processedStylesMap: Map<string, ProcessedStyle>, motionIdGenerator: IdGenerator): { cuesHCL: string; motionsHCL: string; autoGeneratedStylesHCL: string; }; export { processDialogues };