working the player

This commit is contained in:
2026-04-01 19:23:17 -03:00
parent 68802db15c
commit 0f7e4424bc
13 changed files with 1013 additions and 571 deletions

View File

@@ -41,11 +41,11 @@ class TestReceiveAndRecord:
)
assert "-hide_banner" in node.compile()
def test_mpegts_format(self, tmp_path):
def test_matroska_format(self, tmp_path):
node = ff.receive_and_record(
"tcp://0.0.0.0:4444?listen", tmp_path / "rec.ts"
"tcp://0.0.0.0:4444?listen", tmp_path / "rec.mkv"
)
assert "mpegts" in node.compile()
assert "matroska" in node.compile()
class TestExtractSceneFrames: