├── .github └── workflows │ └── publish.yml ├── README.md ├── __init__.py ├── animationAssistantNodes.py ├── animationWorkflows ├── animatediff │ ├── animateDiff_Vid_2_Vid(race and dress colour change).json │ ├── animateDiff_vid_2_cartoon.json │ └── vid2CartoonThicklines.json ├── generate_512x512_video_for_LivePortrait.json ├── img2img │ ├── ExtremelyFastImg2Img.json │ ├── ExtremelyFastImg2ImgSDXL.json │ └── img2cartoonFast.json ├── joinVideos │ ├── joinVideos_3no_15fps_&_2no__30fps.json │ ├── joinVideos_5no_15fps.json │ ├── joinVideos_5no_30fps.json │ ├── joinVideos_5no_30fps_2NoAudio.json │ └── joinVideos_9no_30fps.json └── move_fg_in_bg │ ├── 2 videos_with_2_subjects_in_moving_bg.mp4 │ ├── bike_moving_left.mp4 │ ├── car_speeding_out.mp4 │ ├── object_go_up_or_down.json │ ├── object_move_in_or_out.json │ ├── portrait_walk_in_or_out.json │ ├── portrait_walk_left_or_right.json │ ├── speeding car.mp4 │ └── video_with_movingOut_bg.mp4 ├── pyproject.toml ├── readMeAssets ├── joinVideos2.gif ├── joinVids.gif ├── livePortrait.gif ├── makeWalk.gif ├── moveLeft.gif ├── moveOut.gif ├── moveUpDown.gif └── replaceBg.gif ├── requirements.txt ├── styles.json └── utils.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/__init__.py -------------------------------------------------------------------------------- /animationAssistantNodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationAssistantNodes.py -------------------------------------------------------------------------------- /animationWorkflows/animatediff/animateDiff_Vid_2_Vid(race and dress colour change).json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/animatediff/animateDiff_Vid_2_Vid(race and dress colour change).json -------------------------------------------------------------------------------- /animationWorkflows/animatediff/animateDiff_vid_2_cartoon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/animatediff/animateDiff_vid_2_cartoon.json -------------------------------------------------------------------------------- /animationWorkflows/animatediff/vid2CartoonThicklines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/animatediff/vid2CartoonThicklines.json -------------------------------------------------------------------------------- /animationWorkflows/generate_512x512_video_for_LivePortrait.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/generate_512x512_video_for_LivePortrait.json -------------------------------------------------------------------------------- /animationWorkflows/img2img/ExtremelyFastImg2Img.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/img2img/ExtremelyFastImg2Img.json -------------------------------------------------------------------------------- /animationWorkflows/img2img/ExtremelyFastImg2ImgSDXL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/img2img/ExtremelyFastImg2ImgSDXL.json -------------------------------------------------------------------------------- /animationWorkflows/img2img/img2cartoonFast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/img2img/img2cartoonFast.json -------------------------------------------------------------------------------- /animationWorkflows/joinVideos/joinVideos_3no_15fps_&_2no__30fps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/joinVideos/joinVideos_3no_15fps_&_2no__30fps.json -------------------------------------------------------------------------------- /animationWorkflows/joinVideos/joinVideos_5no_15fps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/joinVideos/joinVideos_5no_15fps.json -------------------------------------------------------------------------------- /animationWorkflows/joinVideos/joinVideos_5no_30fps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/joinVideos/joinVideos_5no_30fps.json -------------------------------------------------------------------------------- /animationWorkflows/joinVideos/joinVideos_5no_30fps_2NoAudio.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/joinVideos/joinVideos_5no_30fps_2NoAudio.json -------------------------------------------------------------------------------- /animationWorkflows/joinVideos/joinVideos_9no_30fps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/joinVideos/joinVideos_9no_30fps.json -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/2 videos_with_2_subjects_in_moving_bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/2 videos_with_2_subjects_in_moving_bg.mp4 -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/bike_moving_left.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/bike_moving_left.mp4 -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/car_speeding_out.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/car_speeding_out.mp4 -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/object_go_up_or_down.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/object_go_up_or_down.json -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/object_move_in_or_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/object_move_in_or_out.json -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/portrait_walk_in_or_out.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/portrait_walk_in_or_out.json -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/portrait_walk_left_or_right.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/portrait_walk_left_or_right.json -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/speeding car.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/speeding car.mp4 -------------------------------------------------------------------------------- /animationWorkflows/move_fg_in_bg/video_with_movingOut_bg.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/animationWorkflows/move_fg_in_bg/video_with_movingOut_bg.mp4 -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readMeAssets/joinVideos2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/joinVideos2.gif -------------------------------------------------------------------------------- /readMeAssets/joinVids.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/joinVids.gif -------------------------------------------------------------------------------- /readMeAssets/livePortrait.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/livePortrait.gif -------------------------------------------------------------------------------- /readMeAssets/makeWalk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/makeWalk.gif -------------------------------------------------------------------------------- /readMeAssets/moveLeft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/moveLeft.gif -------------------------------------------------------------------------------- /readMeAssets/moveOut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/moveOut.gif -------------------------------------------------------------------------------- /readMeAssets/moveUpDown.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/moveUpDown.gif -------------------------------------------------------------------------------- /readMeAssets/replaceBg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/readMeAssets/replaceBg.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/requirements.txt -------------------------------------------------------------------------------- /styles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/styles.json -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Isi-dev/ComfyUI_Animation_Nodes_and_Workflows/HEAD/utils.py --------------------------------------------------------------------------------