mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-06-12 20:45:20 +02:00
12 lines
391 B
Python
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"]
|