Giter VIP home page Giter VIP logo

comfyui-mixlab-nodes's People

Contributors

cd0304 avatar gold3bear avatar shadowcz007 avatar wfjsw avatar xyongxin avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

comfyui-mixlab-nodes's Issues

输入节点的问题

多出的两个输入节点image_base64和prompt不知道该从哪里获得数值,没输入直接报红,该怎么做?谢谢!

关于3DImage模块的求助

hi,大佬,3DImage这个模块太棒了,想请问下js相关的代码可以提供源码吗,想做一些二次修改

ChatGPT Error

ChatGPT error, after putting in my key i still get this error
chatgpt

FT2FontError Appear again

The latest version 0.4.0 reports an error when running in mac OS.
Operation environment
mac book m1 pro 16G mac os 14.2 (23C64)
Python version: 3.11.5 (v3.11.5:cce6ba91b3, Aug 24 2023, 10:50:31) [Clang 13.0.0 (clang-1300.0.29.30)]
Forcing FP16.
Set vram state to: SHARED
Device: mps
VAE dtype: torch.float32
ComfyUI: 1832e45d92
Manager: V1.14

Here is the error message:
Error processing font /System/Library/Fonts/Apple Color Emoji.ttc: In FT2Font: Could not set the fontsize (invalid pixel size; error code 0x17)
Error processing font /System/Library/Fonts/Supplemental/NISC18030.ttf: In FT2Font: Could not set the fontsize (invalid pixel size; error code 0x17)

OSError: [Errno 98] error while attempting to bind on address ('0.0.0.0', 3001): address already in use

https_key OK: /workspace/ComfyUI/custom_nodes/comfyui-mixlab-nodes/https/certificate.crt /workspace/ComfyUI/custom_nodes/comfyui-mixlab-nodes/https/private.key
Traceback (most recent call last):
File "/workspace/ComfyUI/main.py", line 220, in
loop.run_until_complete(run(server, address=args.listen, port=args.port, verbose=not args.dont_print_server, call_on_start=call_on_start))
File "/usr/lib/python3.10/asyncio/base_events.py", line 649, in run_until_complete
return future.result()
File "/workspace/ComfyUI/main.py", line 124, in run
await asyncio.gather(server.start(address, port, verbose, call_on_start), server.publish_loop())
File "/workspace/ComfyUI/custom_nodes/comfyui-mixlab-nodes/init.py", line 219, in new_start
await site2.start()
File "/usr/local/lib/python3.10/dist-packages/aiohttp/web_runner.py", line 121, in start
self._server = await loop.create_server(
File "/usr/lib/python3.10/asyncio/base_events.py", line 1519, in create_server
raise OSError(err.errno, 'error while attempting '
OSError: [Errno 98] error while attempting to bind on address ('0.0.0.0', 3001): address already in use

ModuleNotFoundError: No module named 'server'

D:\comfyui-mixlab-nodes\venv\Scripts\python.exe D:\comfyui-mixlab-nodes\__init__.py 
Traceback (most recent call last):
  File "D:\comfyui-mixlab-nodes\__init__.py", line 14, in <module>
    from server import PromptServer
ModuleNotFoundError: No module named 'server'

Process finished with exit code 1

After installation with steps provided, IDE cannot find the module. Nor did I find the package "server" in requirements.txt.

minor change of readme

From the code of clipseg, I should put clipseg model under models/clipseg instead of model in readme. Not to create a new folder

是否可以设置一个暂停屏幕按纽,而且点继续以后可以继续共享原来的屏幕,而不是需要重新链接?

是否可以设置一个暂停屏幕按纽,而且点继续以后可以继续共享原来的屏幕,而不是需要重新链接?另外:load image from path节点中的white_bg是如何使用的?newest_files我理解是判断文件是不是最新的,如果是就执行工作流,如果不是就暂停不动直到最新的文件出现,但使用中好像是不起作用。

ChatGPT node

Can't get this node to work.
I'm puting key, starting with sk-... in the "Key" field, right??
image
image
And I get this Error
Error occurred when executing ChatGPTOpenAI:

Error code: 404 - {'error': {'message': 'The model gpt-35-turbo does not exist', 'type': 'invalid_request_error', 'param': None, 'code': 'model_not_found'}}

File "C:\Users\kakochka\ComfyUI\ComfyUI\execution.py", line 153, in recursive_execute
output_data, output_ui = get_output_data(obj, input_data_all)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\ComfyUI\execution.py", line 83, in get_output_data
return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\ComfyUI\execution.py", line 76, in map_node_over_list
results.append(getattr(obj, func)(**slice_dict(input_data_all, i)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\ComfyUI\custom_nodes\comfyui-mixlab-nodes\nodes\ChatGPT.py", line 144, in generate_contextual_text
response_content = chat(client,model,messages)
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\ComfyUI\custom_nodes\comfyui-mixlab-nodes\nodes\ChatGPT.py", line 48, in chat
raise ex
File "C:\Users\kakochka\ComfyUI\ComfyUI\custom_nodes\comfyui-mixlab-nodes\nodes\ChatGPT.py", line 39, in chat
response = client.chat.completions.create(
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\python_embeded\Lib\site-packages\openai_utils_utils.py", line 301, in wrapper
return func(*args, **kwargs)
^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\python_embeded\Lib\site-packages\openai\resources\chat\completions.py", line 598, in create
return self._post(
^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\python_embeded\Lib\site-packages\openai_base_client.py", line 1096, in post
return cast(ResponseT, self.request(cast_to, opts, stream=stream, stream_cls=stream_cls))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\python_embeded\Lib\site-packages\openai_base_client.py", line 856, in request
return self._request(
^^^^^^^^^^^^^^
File "C:\Users\kakochka\ComfyUI\python_embeded\Lib\site-packages\openai_base_client.py", line 908, in _request
raise self._make_status_error_from_response(err.response) from None

FloatingVideo not show pic

The image input can preview, but the floatingvideo nodes not show the images, it can change seed and denoise, only can not show the input image

OSError: [Errno 10048] error while attempting to bind on address ('127.0.0.1', 8188)

Traceback (most recent call last):
File "E:\IMAGE\ComfyUI_windows_portable\ComfyUI\main.py", line 220, in
loop.run_until_complete(run(server, address=args.listen, port=args.port, verbose=not args.dont_print_server, call_on_start=call_on_start))
File "asyncio\base_events.py", line 653, in run_until_complete
File "E:\IMAGE\ComfyUI_windows_portable\ComfyUI\main.py", line 124, in run
await asyncio.gather(server.start(address, port, verbose, call_on_start), server.publish_loop())
File "E:\IMAGE\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes_init_.py", line 212, in new_start
await site.start()
File "E:\IMAGE\ComfyUI_windows_portable\python_embeded\Lib\site-packages\aiohttp\web_runner.py", line 121, in start
self._server = await loop.create_server(
^^^^^^^^^^^^^^^^^^^^^^^^^
File "asyncio\base_events.py", line 1525, in create_server
OSError: [Errno 10048] error while attempting to bind on address ('127.0.0.1', 8188): 通常每个套接字地址(协议/网络地址/ 端口)只允许使用一次。

Consistency Decoder

这个可以有,但不会用,下载回VAE来放好了。然后呢?能出个教程不?谢谢。

最新版liverun还是一样报错

错误与原来的一样,但报错的时间点不一样,现在是点击liverun按钮后,提示如下
Prompt outputs failed validation
ScreenShare:

  • Required input is missing: image_base64

浮动窗口的问题

用最新的画中画的时候,点击画中画出现 Redirecting to HTTPS access due to the requirement of the floating window 就跳转到一个新的页面了,不知道有什么地方需要设置呢?

Conflicted Nodes

Installed the node on latest comfyui.

Conflicted Nodes:
RandomPrompt [ComfyUI-Malefish-Custom-Scripts], CLIPSeg [clipseg.py], CombineSegMasks [clipseg.py], TransparentImage [ComfyUI-TrollSuite]

functional requirements

You can add a prompt window feature, such as a text box output parameter link clip editor, and the prompt box can float.

issue: 3D Image is broken

'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAYAAAAfFcSJAAAADUlEQVR42mN88uXrPQAFwwK/6xJ6CQAAAABJRU5ErkJggg=='

The bg_image is stored as a base64-encoded blob, and the blob itself is broken data. When running the 3D image, it eventually crashes during the process of reading it with PIL, as described.

  File "/mnt/teratera/git/ComfyUI/execution.py", line 153, in recursive_execute
    output_data, output_ui = get_output_data(obj, input_data_all)
                             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/mnt/teratera/git/ComfyUI/execution.py", line 83, in get_output_data
    return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True)
                    ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/mnt/teratera/git/ComfyUI/execution.py", line 76, in map_node_over_list
    results.append(getattr(obj, func)(**slice_dict(input_data_all, i)))
                   ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/mnt/teratera/git/ComfyUI/custom_nodes/comfyui-mixlab-nodes/nodes/ImageNode.py", line 1073, in run
    bg_image = base64_to_image(upload['bg_image'])
               ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  File "/mnt/teratera/git/ComfyUI/custom_nodes/comfyui-mixlab-nodes/nodes/ImageNode.py", line 539, in base64_to_image
    image = Image.open(image_stream)
            ^^^^^^^^^^^^^^^^^^^^^^^^
  File "/mnt/teratera/venv/lib/python3.11/site-packages/PIL/Image.py", line 3186, in open
    raise UnidentifiedImageError(
PIL.UnidentifiedImageError: cannot identify image file <_io.BytesIO object at 0x7fa56a5cb7e0>

It is not advisable to save temporary image data in the input directory. Please use the temp directory instead.

consistency decoder decode fails with error and so the VAE decode issues complex error

Hai trying this for first time - three or more issues are coming up ! The transparency node is not giving an out put from the feather mask as some openCV assertion error

Second the consistency decoder fails to validate with some strange error and can you see what exactly is the problem.
Please update or remove the install Bat file for comfyUI users as it is not a practice and no one will be able to install it from there. Best is add all needs in the requirements.txt file which i feel is weak. Use python reference from pypi for any links and not custom links.

ERROR:root:!!! Exception during processing !!!
ERROR:root:Traceback (most recent call last):
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 153, in recursive_execute
output_data, output_ui = get_output_data(obj, input_data_all)
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 83, in get_output_data
return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True)
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\ComfyUI\execution.py", line 76, in map_node_over_list
results.append(getattr(obj, func)(**slice_dict(input_data_all, i)))
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\Vae.py", line 171, in decode
image = vae.decode(samples["samples"].to("cuda:0"))
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\Vae.py", line 16, in decode
return self.decoder(x)
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\python_embeded\lib\site-packages\torch\utils_contextlib.py", line 115, in decorate_context
return func(*args, **kwargs)
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\ComfyUI\custom_nodes\comfyui-mixlab-nodes\Vae.py", line 129, in call
model_output = self.ckpt(c_in * x_start, t_, features=features)
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\python_embeded\lib\site-packages\torch\nn\modules\module.py", line 1518, in _wrapped_call_impl
return self._call_impl(*args, **kwargs)
File "D:\AI\ComfyUI_windows_portable_nvidia_cu118_or_cpu\ComfyUI_windows_portable\python_embeded\lib\site-packages\torch\nn\modules\module.py", line 1527, in _call_impl
return forward_call(*args, **kwargs)
RuntimeError: The following operation failed in the TorchScript interpreter.
Traceback of TorchScript, serialized code (most recent call last):
File "code/torch/dalle_runner_api/model_infra/modules/public_diff_vae.py", line 94, in forward
_0 = (embed_time).forward(t, )
_1 = (embed_image).forward(x0, )
_2 = (down_0_conv_0).forward(_1, _0, )
~~~~~~~~~~~~~~~~~~~~~~ <--- HERE
_3 = (down_0_conv_1).forward(_2, _0, )
_4 = (down_0_conv_2).forward(_3, _0, )
File "code/torch/dalle_runner_api/model_infra/modules/public_diff_vae.py", line 195, in forward
gn_1 = self.gn_1
x = torch.to(argument_1, 5)
_34, _35, = (gn_1).forward(x, )
~~~~~~~~~~~~~ <--- HERE
_36 = (f_1).forward(_34, )
x2 = torch.silu(argument_2)
File "code/torch/dalle_runner_api/model_infra/modules/public_diff_vae.py", line 216, in forward
g = self.g
x3 = torch.contiguous(x)
input = torch.to(x3, 6)
~~~~~~~~ <--- HERE
input0 = torch.to(torch.group_norm(input, 32, g, b), 5)
x4 = torch.silu(input0)

Traceback of TorchScript, original code (most recent call last):
/root/code/dalle-runner-api/dalle_runner_api/model_infra/modules/public_diff_vae.py(202): forward
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1508): _slow_forward
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1527): _call_impl
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1518): _wrapped_call_impl
/root/code/dalle-runner-api/dalle_runner_api/model_infra/modules/public_diff_vae.py(728): forward
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1508): _slow_forward
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1527): _call_impl
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1518): _wrapped_call_impl
/root/code/dalle-runner-api/dalle_runner_api/model_infra/modules/public_diff_vae.py(1022): forward
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1508): _slow_forward
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1527): _call_impl
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/nn/modules/module.py(1518): _wrapped_call_impl
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/jit/_trace.py(1065): trace_module
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/torch/jit/_trace.py(798): trace
(442): test_diff_vae
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/fire/core.py(681): _CallAndUpdateTrace
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/fire/core.py(466): _Fire
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/fire/core.py(141): Fire
(470):
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/core/interactiveshell.py(3526): run_code
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/core/interactiveshell.py(3466): run_ast_nodes
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/core/interactiveshell.py(3284): run_cell_async
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/core/async_helpers.py(129): _pseudo_sync_runner
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/core/interactiveshell.py(3079): _run_cell
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/core/interactiveshell.py(3024): run_cell
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/terminal/interactiveshell.py(881): interact
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/terminal/interactiveshell.py(888): mainloop
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/terminal/ipapp.py(317): start
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/traitlets/config/application.py(1053): launch_instance
/root/.pyenv/versions/3.11.5/lib/python3.11/site-packages/IPython/init.py(129): start_ipython
/root/.pyenv/versions/3.11.5/bin/ipython(8):
RuntimeError: Allocation on device 0 would exceed allowed memory. (out of memory)
Currently allocated : 6.20 GiB
Requested : 1.25 GiB
Device limit : 8.00 GiB
Free (according to CUDA): 0 bytes
PyTorch limit (set by user-supplied memory fraction)
: 17179869184.00 GiB

Prompt executed in 63.24 seconds

Not Working

When loading the graph, the following node types were not found:
comfyui-mixlab-nodes [WIP] 🔗
Nodes that have failed to load will show as red on the graph.

floatingVideo 的画中画功能,打开后是默认工作流

image
image

Exception in callback _ProactorBasePipeTransport._call_connection_lost(None)
handle: <Handle _ProactorBasePipeTransport._call_connection_lost(None)>
Traceback (most recent call last):
File "E:\Python310\lib\asyncio\events.py", line 80, in _run
self._context.run(self._callback, *self._args)
File "E:\Python310\lib\asyncio\proactor_events.py", line 165, in _call_connection_lost
self._sock.shutdown(socket.SHUT_RDWR)
ConnectionResetError: [WinError 10054] 远程主机强迫关闭了一个现有的连接。
FETCH DATA from: E:\ComfyUI\custom_nodes\ComfyUI-Manager\extension-node-map.json

Can you create a multi-variable/randomizing prompt?

Can you add a feature or a node to modify, so we can create multiple lists of values that will go in at multiple points?

Such as:
Photo of person in front of

Where the first is [dancing, standing, smiling] and the second is [castle, dance hall, spaceship]?

or a and b or something? like
photo of person a in front of b

设定捕获区域等几个小问题。。。

非常棒的扩展,感谢作者!

几点小问题请参考:

  1. 设定捕获区域(Set Area)不起作用;

  2. Live Run的频率(间隔时间)是否可以设置?

  3. 在我的mac环境下,443端口默认没有权限绑定,换了个81xx端口后解决了:
    PermissionError: [Errno 13] error while attempting to bind on address ('127.0.0.1', 443): permission denied
    '''
    site2 = web.TCPSite(runner, address, 443, ssl_context=ssl_context)


  1. 能否将菜单设置区域的颜色(白色)调成和comfyUI的相同?
image

RuntimeError: In FT2Font: Can not load face (unknown file format; error code 0x2)

raceback (most recent call last):
File "G:\comfyUI+AnimateDiff\ComfyUI\nodes.py", line 1800, in load_custom_node
module_spec.loader.exec_module(module)
File "", line 883, in exec_module
File "", line 241, in call_with_frames_removed
File "G:\comfyUI+AnimateDiff\ComfyUI\custom_nodes\comfyui-mixlab-nodes_init
.py", line 276, in
from .nodes.Utils import ColorInput,FontInput
File "G:\comfyUI+AnimateDiff\ComfyUI\custom_nodes\comfyui-mixlab-nodes\nodes\Utils.py", line 32, in
font_files = get_font_files(r_directory)
File "G:\comfyUI+AnimateDiff\ComfyUI\custom_nodes\comfyui-mixlab-nodes\nodes\Utils.py", line 22, in get_font_files
font_name = font_prop.get_name()
File "G:\comfyUI+AnimateDiff\python_embeded\lib\site-packages\matplotlib\font_manager.py", line 669, in get_name
return get_font(findfont(self)).family_name
File "G:\comfyUI+AnimateDiff\python_embeded\lib\site-packages\matplotlib\font_manager.py", line 1554, in get_font
return _get_font(
File "G:\comfyUI+AnimateDiff\python_embeded\lib\site-packages\matplotlib\font_manager.py", line 1496, in _get_font
return ft2font.FT2Font(
RuntimeError: In FT2Font: Can not load face (unknown file format; error code 0x2)

Cannot import G:\comfyUI+AnimateDiff\ComfyUI\custom_nodes\comfyui-mixlab-nodes module for custom nodes: In FT2Font: Can not load face (unknown file format; error code 0x2)

今天的才git pull 最新版后,

Conflict with ComfyUI Custom Scripts plugin

There is a conflict with the "ComfyUI-Custom-Scripts" node, causing issues with the workflow presets functionality in the right-click menu. I have reported this error in the "ComfyUI-Custom-Scripts" repository as I am unsure which plugin is causing the problem. Therefore, I have raised the issue with both of your teams. You can find more details about this problem at pythongosssss/ComfyUI-Custom-Scripts#138.

ScreenShareNode.run() missing 2 required positional arguments: 'slide' and 'seed'

Error occurred when executing ScreenShare:

ScreenShareNode.run() missing 2 required positional arguments: 'slide' and 'seed'

File "E:\mycomfyui\ComfyUI\execution.py", line 153, in recursive_execute
output_data, output_ui = get_output_data(obj, input_data_all)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "E:\mycomfyui\ComfyUI\execution.py", line 83, in get_output_data
return_values = map_node_over_list(obj, input_data_all, obj.FUNCTION, allow_interrupt=True)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "E:\mycomfyui\ComfyUI\execution.py", line 76, in map_node_over_list
results.append(getattr(obj, func)(**slice_dict(input_data_all, i)))
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

String from the screen share node was working this morning but has a problem now

Using the same exact workflow it was working this morning but not anymore

ERROR:root:Failed to validate prompt for output 97:
ERROR:root:* ConcatStringSingle 89:
ERROR:root:  - Exception when validating inner node: tuple index out of range
ERROR:root:Output will be ignored
ERROR:root:Failed to validate prompt for output 151:
ERROR:root:* (prompt):
ERROR:root:  - Exception when validating node: tuple index out of range
ERROR:root:* ShowText|pysssss 151:
ERROR:root:  - Exception when validating node: tuple index out of range
ERROR:root:Output will be ignored
Prompt executed in 0.00 seconds

msedge_VO1tLfwz2W
iSIiCBN8Gq

this is the workflow IF_TurboScreenCap.json

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.