You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My imported workflow contains a VHS_VideoCombine node that has a pingpong boolean parameter. I can hardcode the value in the workflow file (I actually created separate workflows for true/false values as a workaround to this issue), but I can't figure out how to expose this parameter in the UI. I thought it would be as simple as adding it to the end of the json file.
I added the following to the "input_options" section:
{
"node_id": "78",
"input_name_in_node": "pingpong",
"title": "pingpong"
}
It didn't work. No parameters are showing up in the UI with this change. When I revert the change, the UI is working again. Is there another change I need to make to get have the parameter show up in the UI? Thanks!
The text was updated successfully, but these errors were encountered:
I have a workaround for ComfyUI Mini not supporting boolean params. There is an int to bool custom node in comfy_mtb. I converted the pingpong param to an input and connected this node which is recognized by Mini! 😀
My imported workflow contains a VHS_VideoCombine node that has a pingpong boolean parameter. I can hardcode the value in the workflow file (I actually created separate workflows for true/false values as a workaround to this issue), but I can't figure out how to expose this parameter in the UI. I thought it would be as simple as adding it to the end of the json file.
already in the json file:
"78": {
"inputs": {
"frame_rate": "24",
"loop_count": "0",
"filename_prefix": "comfyui_hunyaun",
"format": "image/webp",
"pix_fmt": "yuv420p",
"crf": 19,
"save_metadata": true,
"pingpong": false,
"save_output": true,
"images": [
"73",
0
]
},
I added the following to the "input_options" section:
{
"node_id": "78",
"input_name_in_node": "pingpong",
"title": "pingpong"
}
It didn't work. No parameters are showing up in the UI with this change. When I revert the change, the UI is working again. Is there another change I need to make to get have the parameter show up in the UI? Thanks!
The text was updated successfully, but these errors were encountered: