mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-14 20:55:15 +02:00
13 lines
391 B
Python
13 lines
391 B
Python
|
|
"""Rendering: synthesise and merge an approved transcript into audio.
|
||
|
|
|
||
|
|
The :class:`PodcastRenderer` is the public entry point; the segment cache and
|
||
|
|
FFmpeg merge are implementation details it owns.
|
||
|
|
"""
|
||
|
|
|
||
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from .errors import RenderError
|
||
|
|
from .renderer import PodcastRenderer, RenderedPodcast
|
||
|
|
|
||
|
|
__all__ = ["PodcastRenderer", "RenderError", "RenderedPodcast"]
|