embeded stream opengl

This commit is contained in:
2026-04-01 15:16:09 -03:00
parent 453601c072
commit bdc5705022
8 changed files with 407 additions and 328 deletions

View File

@@ -67,7 +67,7 @@ class TestStartRecorder:
mock_segment.assert_called_once_with(
manager.stream_url, manager.stream_dir, 60,
)
mock_async.assert_called_once_with(mock_node)
mock_async.assert_called_once_with(mock_node, pipe_stderr=True)
assert "recorder" in manager._procs
@@ -82,7 +82,7 @@ class TestStartRecorderWithMonitor:
assert fifo == manager.session_dir / "monitor.pipe"
mock_monitor.assert_called_once()
mock_async.assert_called_once_with(mock_node)
mock_async.assert_called_once_with(mock_node, pipe_stderr=True)
@patch("cht.stream.manager.ff.run_async")
@patch("cht.stream.manager.ff.receive_and_segment_with_monitor")