comfyui-workflow-templates 0.1.45__py3-none-any.whl → 0.1.46__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of comfyui-workflow-templates might be problematic. Click here for more details.
- comfyui_workflow_templates/templates/hunyuan_video_text_to_video.json +689 -312
- comfyui_workflow_templates/templates/image_to_video.json +390 -161
- comfyui_workflow_templates/templates/image_to_video_wan.json +610 -271
- comfyui_workflow_templates/templates/index.json +12 -0
- comfyui_workflow_templates/templates/index.schema.json +19 -0
- comfyui_workflow_templates/templates/ltxv_image_to_video.json +676 -274
- comfyui_workflow_templates/templates/ltxv_text_to_video.json +547 -203
- comfyui_workflow_templates/templates/mochi_text_to_video_example.json +433 -170
- comfyui_workflow_templates/templates/text_to_video_wan.json +409 -169
- comfyui_workflow_templates/templates/txt_to_image_to_video.json +556 -223
- comfyui_workflow_templates/templates/video_wan2_2_14B_flf2v-1.webp +0 -0
- comfyui_workflow_templates/templates/video_wan2_2_14B_flf2v-2.webp +0 -0
- comfyui_workflow_templates/templates/video_wan2_2_14B_flf2v.json +1090 -0
- comfyui_workflow_templates/templates/video_wan2_2_14B_i2v.json +41 -17
- comfyui_workflow_templates/templates/video_wan2_2_14B_t2v.json +41 -17
- comfyui_workflow_templates/templates/wan2.1_flf2v_720_f16.json +567 -182
- comfyui_workflow_templates/templates/wan2.1_fun_control.json +168 -110
- comfyui_workflow_templates/templates/wan2.1_fun_inp.json +470 -418
- {comfyui_workflow_templates-0.1.45.dist-info → comfyui_workflow_templates-0.1.46.dist-info}/METADATA +1 -1
- {comfyui_workflow_templates-0.1.45.dist-info → comfyui_workflow_templates-0.1.46.dist-info}/RECORD +23 -20
- {comfyui_workflow_templates-0.1.45.dist-info → comfyui_workflow_templates-0.1.46.dist-info}/WHEEL +0 -0
- {comfyui_workflow_templates-0.1.45.dist-info → comfyui_workflow_templates-0.1.46.dist-info}/licenses/LICENSE +0 -0
- {comfyui_workflow_templates-0.1.45.dist-info → comfyui_workflow_templates-0.1.46.dist-info}/top_level.txt +0 -0
|
@@ -490,6 +490,18 @@
|
|
|
490
490
|
"models": ["Wan2.2"],
|
|
491
491
|
"date": "2025-07-29"
|
|
492
492
|
},
|
|
493
|
+
{
|
|
494
|
+
"name": "video_wan2_2_14B_flf2v",
|
|
495
|
+
"title": "Wan 2.2 14B First-Last Frame to Video",
|
|
496
|
+
"description": "Generate smooth video transitions by defining start and end frames.",
|
|
497
|
+
"mediaType": "image",
|
|
498
|
+
"mediaSubtype": "webp",
|
|
499
|
+
"thumbnailVariant": "hoverDissolve",
|
|
500
|
+
"tutorialUrl": "https://docs.comfy.org/tutorials/video/wan/wan2_2",
|
|
501
|
+
"tags": ["Text to Video", "Video"],
|
|
502
|
+
"models": ["Wan2.2"],
|
|
503
|
+
"date": "2025-08-02"
|
|
504
|
+
},
|
|
493
505
|
{
|
|
494
506
|
"name": "video_wan2_2_5B_ti2v",
|
|
495
507
|
"title": "Wan 2.2 5B Video Generation",
|
|
@@ -71,6 +71,25 @@
|
|
|
71
71
|
"description": {
|
|
72
72
|
"type": "string",
|
|
73
73
|
"description": "Brief description of what the workflow does"
|
|
74
|
+
},
|
|
75
|
+
"tags": {
|
|
76
|
+
"type": "array",
|
|
77
|
+
"description": "Array of tags for categorizing and filtering templates",
|
|
78
|
+
"items": {
|
|
79
|
+
"type": "string"
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
"models": {
|
|
83
|
+
"type": "array",
|
|
84
|
+
"description": "Array of model names used by this workflow",
|
|
85
|
+
"items": {
|
|
86
|
+
"type": "string"
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"date": {
|
|
90
|
+
"type": "string",
|
|
91
|
+
"format": "date",
|
|
92
|
+
"description": "Date when the template was created or last updated (YYYY-MM-DD format)"
|
|
74
93
|
}
|
|
75
94
|
},
|
|
76
95
|
"additionalProperties": false
|