SurfSense/surfsense_backend/app/podcasts/rendering/__init__.py
2026-06-10 18:44:03 +02:00

12 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"]