23 lines
585 B
Python
23 lines
585 B
Python
|
|
"""hms_renderer – Render-Worker-Spike (PLAN.md §6.1C, §12, §36 Nr. 4–6).
|
|||
|
|
|
|||
|
|
Python orchestriert native GStreamer-Komponenten; keine Pixelverarbeitung
|
|||
|
|
in Python (§2.1, §33). Pipelines werden als gst-launch-Strings definiert
|
|||
|
|
und auf dem Zielsystem ausgeführt/messbar.
|
|||
|
|
"""
|
|||
|
|
|
|||
|
|
from hms_renderer.pipelines import (
|
|||
|
|
D3D11Pipeline,
|
|||
|
|
DevGLPipeline,
|
|||
|
|
build_compositor_pipeline,
|
|||
|
|
build_single_video_pipeline,
|
|||
|
|
gst_available,
|
|||
|
|
)
|
|||
|
|
|
|||
|
|
__all__ = [
|
|||
|
|
"D3D11Pipeline",
|
|||
|
|
"DevGLPipeline",
|
|||
|
|
"build_single_video_pipeline",
|
|||
|
|
"build_compositor_pipeline",
|
|||
|
|
"gst_available",
|
|||
|
|
]
|