From 8d30acac6a67df8972ea2bcd879362f35beeb93c Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Thu, 4 Jun 2026 04:29:02 -0400 Subject: [PATCH 1/2] Write remux test output to sandbox instead of project root --- tests/test_remux.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tests/test_remux.py b/tests/test_remux.py index 9c4aecfe8..72247c45f 100644 --- a/tests/test_remux.py +++ b/tests/test_remux.py @@ -3,13 +3,14 @@ import av import av.datasets -from .common import fate_suite +from .common import fate_suite, sandboxed def test_video_remux() -> None: input_path = av.datasets.curated("pexels/time-lapse-video-of-night-sky-857195.mp4") + output_path = sandboxed("remuxed.mkv") input_ = av.open(input_path) - output = av.open("remuxed.mkv", "w") + output = av.open(output_path, "w") in_stream = input_.streams.video[0] out_stream = output.add_stream_from_template(in_stream) @@ -24,7 +25,7 @@ def test_video_remux() -> None: input_.close() output.close() - with av.open("remuxed.mkv") as container: + with av.open(output_path) as container: # Assert output is a valid media file assert len(container.streams.video) == 1 assert len(container.streams.audio) == 0 From ad78f217d5e3422247032208fbba7c524829d9fb Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Thu, 4 Jun 2026 04:29:56 -0400 Subject: [PATCH 2/2] Update authors.rst --- AUTHORS.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/AUTHORS.rst b/AUTHORS.rst index 536dcd037..6f4446459 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -89,6 +89,8 @@ All contributors (by number of commits): * Gemfield * henri-gasc * Jonathan Martin +* HotariTobu +* Joshua * Johan Jeppsson Karlin * Kian-Meng Ang * Philipp Klaus