From 1ecf88ac5f20bc5a1c91792d1a68559575e6afd7 Mon Sep 17 00:00:00 2001 From: Artem Kotov Date: Wed, 16 Aug 2023 18:36:45 +0400 Subject: [PATCH] fix #5229 (#5235) * fix #5229 * add changeset * add simple test for #5229 similar to default one * Lint --------- Co-authored-by: gradio-pr-bot Co-authored-by: Freddy Boulton --- .changeset/whole-buttons-drive.md | 5 +++++ gradio/components/video.py | 2 ++ test/test_components.py | 5 +++++ 3 files changed, 12 insertions(+) create mode 100644 .changeset/whole-buttons-drive.md diff --git a/.changeset/whole-buttons-drive.md b/.changeset/whole-buttons-drive.md new file mode 100644 index 0000000000..96f4967408 --- /dev/null +++ b/.changeset/whole-buttons-drive.md @@ -0,0 +1,5 @@ +--- +"gradio": patch +--- + +fix:fix #5229 diff --git a/gradio/components/video.py b/gradio/components/video.py index 80c216f8a4..f9ae9bf2f5 100644 --- a/gradio/components/video.py +++ b/gradio/components/video.py @@ -239,6 +239,8 @@ class Video( return output_file_name elif not self.include_audio: output_file_name = str(file_name.with_name(f"muted_{file_name.name}")) + if Path(output_file_name).exists(): + return output_file_name if wasm_utils.IS_WASM: raise wasm_utils.WasmUnsupportedError( "include_audio=False is not supported in the Wasm mode." diff --git a/test/test_components.py b/test/test_components.py index f9795c1a4a..340fe204c4 100644 --- a/test/test_components.py +++ b/test/test_components.py @@ -1332,6 +1332,11 @@ class TestVideo: output2 = video_input.preprocess(x_video) assert output1 == output2 + video_input = gr.Video(include_audio=False) + output1 = video_input.preprocess(x_video) + output2 = video_input.preprocess(x_video) + assert output1 == output2 + video_input = gr.Video(label="Upload Your Video") assert video_input.get_config() == { "autoplay": False,