-
Notifications
You must be signed in to change notification settings - Fork 8
/
__init__.py
25 lines (24 loc) · 932 Bytes
/
__init__.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
from .util_nodes import LoadVideo,PreViewVideo
from .studio_nodes import DiffTextNode,DiffutoonNode,SDPathLoader,ControlNetPathLoader,ExVideoNode
WEB_DIRECTORY = "./web"
# A dictionary that contains all nodes you want to export with their names
# NOTE: names should be globally unique
NODE_CLASS_MAPPINGS = {
"LoadVideo": LoadVideo,
"PreViewVideo": PreViewVideo,
"SDPathLoader": SDPathLoader,
"DiffTextNode": DiffTextNode,
"DiffutoonNode": DiffutoonNode,
"ControlNetPathLoader": ControlNetPathLoader,
"ExVideoNode": ExVideoNode
}
# A dictionary that contains the friendly/humanly readable titles for the nodes
NODE_DISPLAY_NAME_MAPPINGS = {
"LoadVideo": "LoadVideo",
"PreViewVideo": "PreViewVideo",
"SDPathLoader": "SDPathLoader",
"DiffTextNode": "DiffTextNode",
"DiffutoonNode": "DiffutoonNode",
"ControlNetPathLoader": "ControlNetPathLoader",
"ExVideoNode": "ExVideoNode"
}