From 66086a17fbb7784bf2543c2a49f29d75c47d2a3c Mon Sep 17 00:00:00 2001 From: bilt Date: Mon, 7 Jul 2025 22:50:40 +0800 Subject: [PATCH] return (url) --- comfy_extras/nodes_video.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfy_extras/nodes_video.py b/comfy_extras/nodes_video.py index f1d92c629..8e3a653ee 100644 --- a/comfy_extras/nodes_video.py +++ b/comfy_extras/nodes_video.py @@ -173,9 +173,9 @@ class SaveVideo(ComfyNodeABC): # 不加密,直接重命名 os.rename(temp_file_path, final_file_path) - url = f"http://comfy.helloitsme-docs.serv00.net/decrypt_and_serve_video?filename={os.path.basename(final_file_path)}&subfolder={subfolder}&type=output" + url = f'Click to open Video: {final_file_path}' # 只返回url到ui.text - return { "ui": { "text": (url,) } } + return (url) class CreateVideo(ComfyNodeABC): @classmethod