-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathnodes_map.py
More file actions
64 lines (62 loc) · 2.28 KB
/
nodes_map.py
File metadata and controls
64 lines (62 loc) · 2.28 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
from .nodes.addTextWatermark import *
from .nodes.frames2video import *
from .nodes.video2frames import *
from .nodes.addImgWatermark import *
from .nodes.videoFlip import *
from .nodes.extractAudio import *
from .nodes.loadImageFromDir import *
from .nodes.imageCopy import *
from .nodes.imagePath2Tensor import *
from .nodes.mergingVideoByTwo import *
from .nodes.mergingVideoByPlenty import *
from .nodes.stitchingVideo import *
from .nodes.multiCuttingVideo import *
from .nodes.singleCuttingVideo import *
from .nodes.addAudio import *
from .nodes.imagesSave import *
from .nodes.pipVideo import *
from .nodes.videoTransition import *
from .nodes.videoPlayback import *
NODE_CLASS_MAPPINGS = {
"Video2Frames": Video2Frames,
"Frames2Video": Frames2Video,
"AddTextWatermark": AddTextWatermark,
"AddImgWatermark": AddImgWatermark,
"VideoFlip": VideoFlip,
"ExtractAudio": ExtractAudio,
"LoadImageFromDir": LoadImageFromDir,
"ImageCopy": ImageCopy,
"ImagePath2Tensor": ImagePath2Tensor,
"MergingVideoByTwo": MergingVideoByTwo,
"MergingVideoByPlenty": MergingVideoByPlenty,
"StitchingVideo": StitchingVideo,
"MultiCuttingVideo": MultiCuttingVideo,
"SingleCuttingVideo": SingleCuttingVideo,
"AddAudio": AddAudio,
"ImagesSave": ImagesSave,
"PipVideo": PipVideo,
"VideoTransition": VideoTransition,
"VideoPlayback": VideoPlayback,
}
# A dictionary that contains the friendly/humanly readable titles for the nodes
NODE_DISPLAY_NAME_MAPPINGS = {
"Video2Frames": "🔥Video2Frames",
"Frames2Video": "🔥Frames2Video",
"AddTextWatermark": "🔥AddTextWatermark",
"AddImgWatermark": "🔥AddImgWatermark",
"VideoFlip": "🔥VideoFlip",
"ExtractAudio": "🔥ExtractAudio",
"LoadImageFromDir": "🔥LoadImageFromDir",
"ImageCopy": "🔥ImageCopy",
"ImagePath2Tensor": "🔥ImagePath2Tensor",
"MergingVideoByTwo": "🔥MergingVideoByTwo",
"MergingVideoByPlenty": "🔥MergingVideoByPlenty",
"StitchingVideo": "🔥StitchingVideo",
"MultiCuttingVideo": "🔥MultiCuttingVideo",
"SingleCuttingVideo": "🔥SingleCuttingVideo",
"AddAudio": "🔥AddAudio",
"ImagesSave": "🔥ImagesSave",
"PipVideo": "🔥PipVideo",
"VideoTransition": "🔥VideoTransition",
"VideoPlayback": "🔥VideoPlayback",
}