├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── __init__.py ├── audio_latent_blend.py ├── data ├── midi_files │ ├── prom_single_track.mid │ ├── promiscuoius__chorus.mid │ ├── promiscuous_chorus_melody.mid │ ├── promiscuous_melody.mid │ └── sample_midi.mid └── sample_midi.mp4 ├── examples ├── FLEX_Advanced_Audio_Reactive_expressionVERSION2.json ├── FLEX_Advanced_Inserting_expressions_into_vidVERSION2.json ├── ace_step_1_t2m.json ├── acestep_extend.json ├── acestep_image2video.json ├── acestep_repaint.json ├── audio_lora_version2.json ├── audio_pose_wan_vace.json ├── audio_prompt_travel.json ├── blood_buubbles_version2.json ├── circl_line_visualizerVERSION2.json ├── depth_chamber_image VERSION22.json ├── depth_chamber_videoVERSION22.json ├── face_mesh_visualizerVERSION2.json ├── lip_sync_visualizerVERSION2.json ├── playhead_tutorialVERSION2.json ├── slilme_tutorialVERSION2.json ├── smiley_interp_tutoprial_VERSION2.json ├── spinnyvis │ ├── part2_animatediffVERSION2.json │ └── part_1_visualizerVERSION2.json ├── tutorials │ └── MIDI │ │ ├── MIDI-Tutorial.json │ │ └── ace_step_audio_separation.json ├── version2_example.json └── yvann-inside.json ├── external_integration.py ├── node_configs └── node_configs.py ├── nodes ├── acestep │ ├── README.md │ ├── ace_step_guiders.py │ ├── ace_step_utils.py │ ├── audio_mask_nodes.py │ └── nodes.py ├── audio │ ├── audio_nodes.py │ ├── audio_nodes_effects.py │ ├── audio_nodes_utility.py │ ├── audio_processor_legacy.py │ ├── audio_utils.py │ ├── flex_audio.py │ ├── flex_audio_visualizer.py │ ├── midi_nodes.py │ └── midi_utils.py ├── depth │ └── depth_base.py ├── doom │ └── doom.py ├── flex │ ├── feature_extractors.py │ ├── feature_extractors_audio.py │ ├── feature_extractors_midi.py │ ├── feature_extractors_proximity.py │ ├── feature_extractors_whisper.py │ ├── feature_modulation.py │ ├── feature_pipe.py │ ├── features.py │ ├── features_audio.py │ ├── features_midi.py │ ├── features_proximity.py │ ├── flex_base.py │ ├── flex_externals.py │ ├── flex_externals_advanced_controlnet.py │ ├── flex_externals_advanced_live_portrait.py │ ├── flex_externals_animatediff.py │ ├── parameter_scheduling.py │ └── visualizers.py ├── images │ ├── flex_image_base.py │ ├── flex_images.py │ ├── image_utility_nodes.py │ └── image_utils.py ├── latents │ ├── flex_latent_base.py │ ├── flex_latents.py │ └── latent_frequency_blender.py ├── masks │ ├── flex_mask_base.py │ ├── flex_masks.py │ ├── mask_base.py │ ├── mask_base_particle_system.py │ ├── mask_utility_nodes.py │ ├── mask_utils.py │ ├── optical_flow_masks.py │ ├── particle_system_masks.py │ ├── shape_utils.py │ ├── temporal_masks.py │ └── voronoi_noise.py ├── misc │ └── misc_nodes.py ├── node_utilities.py ├── preprocessors │ └── pose.py ├── utility_nodes.py └── video │ ├── config.yaml │ ├── flex_video.py │ ├── flex_video_speed.py │ ├── rife_arch.py │ ├── vfi_utils.py │ └── video_base.py ├── pyproject.toml ├── readme.md ├── requirements.txt ├── ryanontheinside_web_async ├── marked.min.js ├── protovis.min.js ├── purify.min.js └── svg-path-properties.min.js ├── tooltips ├── __init__.py ├── categories │ ├── __init__.py │ ├── audio.py │ ├── depth.py │ ├── doom.py │ ├── flex.py │ ├── images.py │ ├── latents.py │ ├── masks.py │ ├── misc.py │ ├── preprocessors.py │ ├── utility.py │ └── video.py └── tooltip_manager.py └── web ├── DOOM-@evilution.zip ├── app.css ├── extensions └── widget_hotkey.js ├── js-dos-api.js └── js ├── color_picker.js ├── doom_widget.js ├── drawable_feature.js ├── feature_templates.js ├── help_popup.js ├── load_iro.js ├── midi_extensions.js ├── midi_loader_extensions.js ├── min_max_widget_validation.js ├── piano.js ├── pitch_extension.js └── suggestions.js /.gitattributes: -------------------------------------------------------------------------------- 1 | assets/* export-ignore -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/__init__.py -------------------------------------------------------------------------------- /audio_latent_blend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/audio_latent_blend.py -------------------------------------------------------------------------------- /data/midi_files/prom_single_track.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/data/midi_files/prom_single_track.mid -------------------------------------------------------------------------------- /data/midi_files/promiscuoius__chorus.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/data/midi_files/promiscuoius__chorus.mid -------------------------------------------------------------------------------- /data/midi_files/promiscuous_chorus_melody.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/data/midi_files/promiscuous_chorus_melody.mid -------------------------------------------------------------------------------- /data/midi_files/promiscuous_melody.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/data/midi_files/promiscuous_melody.mid -------------------------------------------------------------------------------- /data/midi_files/sample_midi.mid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/data/midi_files/sample_midi.mid -------------------------------------------------------------------------------- /data/sample_midi.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/data/sample_midi.mp4 -------------------------------------------------------------------------------- /examples/FLEX_Advanced_Audio_Reactive_expressionVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/FLEX_Advanced_Audio_Reactive_expressionVERSION2.json -------------------------------------------------------------------------------- /examples/FLEX_Advanced_Inserting_expressions_into_vidVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/FLEX_Advanced_Inserting_expressions_into_vidVERSION2.json -------------------------------------------------------------------------------- /examples/ace_step_1_t2m.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/ace_step_1_t2m.json -------------------------------------------------------------------------------- /examples/acestep_extend.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/acestep_extend.json -------------------------------------------------------------------------------- /examples/acestep_image2video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/acestep_image2video.json -------------------------------------------------------------------------------- /examples/acestep_repaint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/acestep_repaint.json -------------------------------------------------------------------------------- /examples/audio_lora_version2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/audio_lora_version2.json -------------------------------------------------------------------------------- /examples/audio_pose_wan_vace.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/audio_pose_wan_vace.json -------------------------------------------------------------------------------- /examples/audio_prompt_travel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/audio_prompt_travel.json -------------------------------------------------------------------------------- /examples/blood_buubbles_version2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/blood_buubbles_version2.json -------------------------------------------------------------------------------- /examples/circl_line_visualizerVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/circl_line_visualizerVERSION2.json -------------------------------------------------------------------------------- /examples/depth_chamber_image VERSION22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/depth_chamber_image VERSION22.json -------------------------------------------------------------------------------- /examples/depth_chamber_videoVERSION22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/depth_chamber_videoVERSION22.json -------------------------------------------------------------------------------- /examples/face_mesh_visualizerVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/face_mesh_visualizerVERSION2.json -------------------------------------------------------------------------------- /examples/lip_sync_visualizerVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/lip_sync_visualizerVERSION2.json -------------------------------------------------------------------------------- /examples/playhead_tutorialVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/playhead_tutorialVERSION2.json -------------------------------------------------------------------------------- /examples/slilme_tutorialVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/slilme_tutorialVERSION2.json -------------------------------------------------------------------------------- /examples/smiley_interp_tutoprial_VERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/smiley_interp_tutoprial_VERSION2.json -------------------------------------------------------------------------------- /examples/spinnyvis/part2_animatediffVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/spinnyvis/part2_animatediffVERSION2.json -------------------------------------------------------------------------------- /examples/spinnyvis/part_1_visualizerVERSION2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/spinnyvis/part_1_visualizerVERSION2.json -------------------------------------------------------------------------------- /examples/tutorials/MIDI/MIDI-Tutorial.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/tutorials/MIDI/MIDI-Tutorial.json -------------------------------------------------------------------------------- /examples/tutorials/MIDI/ace_step_audio_separation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/tutorials/MIDI/ace_step_audio_separation.json -------------------------------------------------------------------------------- /examples/version2_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/version2_example.json -------------------------------------------------------------------------------- /examples/yvann-inside.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/examples/yvann-inside.json -------------------------------------------------------------------------------- /external_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/external_integration.py -------------------------------------------------------------------------------- /node_configs/node_configs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/node_configs/node_configs.py -------------------------------------------------------------------------------- /nodes/acestep/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/acestep/README.md -------------------------------------------------------------------------------- /nodes/acestep/ace_step_guiders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/acestep/ace_step_guiders.py -------------------------------------------------------------------------------- /nodes/acestep/ace_step_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/acestep/ace_step_utils.py -------------------------------------------------------------------------------- /nodes/acestep/audio_mask_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/acestep/audio_mask_nodes.py -------------------------------------------------------------------------------- /nodes/acestep/nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/acestep/nodes.py -------------------------------------------------------------------------------- /nodes/audio/audio_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/audio_nodes.py -------------------------------------------------------------------------------- /nodes/audio/audio_nodes_effects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/audio_nodes_effects.py -------------------------------------------------------------------------------- /nodes/audio/audio_nodes_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/audio_nodes_utility.py -------------------------------------------------------------------------------- /nodes/audio/audio_processor_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/audio_processor_legacy.py -------------------------------------------------------------------------------- /nodes/audio/audio_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/audio_utils.py -------------------------------------------------------------------------------- /nodes/audio/flex_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/flex_audio.py -------------------------------------------------------------------------------- /nodes/audio/flex_audio_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/flex_audio_visualizer.py -------------------------------------------------------------------------------- /nodes/audio/midi_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/audio/midi_nodes.py -------------------------------------------------------------------------------- /nodes/audio/midi_utils.py: -------------------------------------------------------------------------------- 1 | #TODO -------------------------------------------------------------------------------- /nodes/depth/depth_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/depth/depth_base.py -------------------------------------------------------------------------------- /nodes/doom/doom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/doom/doom.py -------------------------------------------------------------------------------- /nodes/flex/feature_extractors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_extractors.py -------------------------------------------------------------------------------- /nodes/flex/feature_extractors_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_extractors_audio.py -------------------------------------------------------------------------------- /nodes/flex/feature_extractors_midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_extractors_midi.py -------------------------------------------------------------------------------- /nodes/flex/feature_extractors_proximity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_extractors_proximity.py -------------------------------------------------------------------------------- /nodes/flex/feature_extractors_whisper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_extractors_whisper.py -------------------------------------------------------------------------------- /nodes/flex/feature_modulation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_modulation.py -------------------------------------------------------------------------------- /nodes/flex/feature_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/feature_pipe.py -------------------------------------------------------------------------------- /nodes/flex/features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/features.py -------------------------------------------------------------------------------- /nodes/flex/features_audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/features_audio.py -------------------------------------------------------------------------------- /nodes/flex/features_midi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/features_midi.py -------------------------------------------------------------------------------- /nodes/flex/features_proximity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/features_proximity.py -------------------------------------------------------------------------------- /nodes/flex/flex_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/flex_base.py -------------------------------------------------------------------------------- /nodes/flex/flex_externals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/flex_externals.py -------------------------------------------------------------------------------- /nodes/flex/flex_externals_advanced_controlnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/flex_externals_advanced_controlnet.py -------------------------------------------------------------------------------- /nodes/flex/flex_externals_advanced_live_portrait.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/flex_externals_advanced_live_portrait.py -------------------------------------------------------------------------------- /nodes/flex/flex_externals_animatediff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/flex_externals_animatediff.py -------------------------------------------------------------------------------- /nodes/flex/parameter_scheduling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/parameter_scheduling.py -------------------------------------------------------------------------------- /nodes/flex/visualizers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/flex/visualizers.py -------------------------------------------------------------------------------- /nodes/images/flex_image_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/images/flex_image_base.py -------------------------------------------------------------------------------- /nodes/images/flex_images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/images/flex_images.py -------------------------------------------------------------------------------- /nodes/images/image_utility_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/images/image_utility_nodes.py -------------------------------------------------------------------------------- /nodes/images/image_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/images/image_utils.py -------------------------------------------------------------------------------- /nodes/latents/flex_latent_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/latents/flex_latent_base.py -------------------------------------------------------------------------------- /nodes/latents/flex_latents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/latents/flex_latents.py -------------------------------------------------------------------------------- /nodes/latents/latent_frequency_blender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/latents/latent_frequency_blender.py -------------------------------------------------------------------------------- /nodes/masks/flex_mask_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/flex_mask_base.py -------------------------------------------------------------------------------- /nodes/masks/flex_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/flex_masks.py -------------------------------------------------------------------------------- /nodes/masks/mask_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/mask_base.py -------------------------------------------------------------------------------- /nodes/masks/mask_base_particle_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/mask_base_particle_system.py -------------------------------------------------------------------------------- /nodes/masks/mask_utility_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/mask_utility_nodes.py -------------------------------------------------------------------------------- /nodes/masks/mask_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/mask_utils.py -------------------------------------------------------------------------------- /nodes/masks/optical_flow_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/optical_flow_masks.py -------------------------------------------------------------------------------- /nodes/masks/particle_system_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/particle_system_masks.py -------------------------------------------------------------------------------- /nodes/masks/shape_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/shape_utils.py -------------------------------------------------------------------------------- /nodes/masks/temporal_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/temporal_masks.py -------------------------------------------------------------------------------- /nodes/masks/voronoi_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/masks/voronoi_noise.py -------------------------------------------------------------------------------- /nodes/misc/misc_nodes.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/node_utilities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/node_utilities.py -------------------------------------------------------------------------------- /nodes/preprocessors/pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/preprocessors/pose.py -------------------------------------------------------------------------------- /nodes/utility_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/utility_nodes.py -------------------------------------------------------------------------------- /nodes/video/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/video/config.yaml -------------------------------------------------------------------------------- /nodes/video/flex_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/video/flex_video.py -------------------------------------------------------------------------------- /nodes/video/flex_video_speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/video/flex_video_speed.py -------------------------------------------------------------------------------- /nodes/video/rife_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/video/rife_arch.py -------------------------------------------------------------------------------- /nodes/video/vfi_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/video/vfi_utils.py -------------------------------------------------------------------------------- /nodes/video/video_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/nodes/video/video_base.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/requirements.txt -------------------------------------------------------------------------------- /ryanontheinside_web_async/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/ryanontheinside_web_async/marked.min.js -------------------------------------------------------------------------------- /ryanontheinside_web_async/protovis.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/ryanontheinside_web_async/protovis.min.js -------------------------------------------------------------------------------- /ryanontheinside_web_async/purify.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/ryanontheinside_web_async/purify.min.js -------------------------------------------------------------------------------- /ryanontheinside_web_async/svg-path-properties.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/ryanontheinside_web_async/svg-path-properties.min.js -------------------------------------------------------------------------------- /tooltips/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/__init__.py -------------------------------------------------------------------------------- /tooltips/categories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/__init__.py -------------------------------------------------------------------------------- /tooltips/categories/audio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/audio.py -------------------------------------------------------------------------------- /tooltips/categories/depth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/depth.py -------------------------------------------------------------------------------- /tooltips/categories/doom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/doom.py -------------------------------------------------------------------------------- /tooltips/categories/flex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/flex.py -------------------------------------------------------------------------------- /tooltips/categories/images.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/images.py -------------------------------------------------------------------------------- /tooltips/categories/latents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/latents.py -------------------------------------------------------------------------------- /tooltips/categories/masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/masks.py -------------------------------------------------------------------------------- /tooltips/categories/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/misc.py -------------------------------------------------------------------------------- /tooltips/categories/preprocessors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/preprocessors.py -------------------------------------------------------------------------------- /tooltips/categories/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/utility.py -------------------------------------------------------------------------------- /tooltips/categories/video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/categories/video.py -------------------------------------------------------------------------------- /tooltips/tooltip_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/tooltips/tooltip_manager.py -------------------------------------------------------------------------------- /web/DOOM-@evilution.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/DOOM-@evilution.zip -------------------------------------------------------------------------------- /web/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/app.css -------------------------------------------------------------------------------- /web/extensions/widget_hotkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/extensions/widget_hotkey.js -------------------------------------------------------------------------------- /web/js-dos-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js-dos-api.js -------------------------------------------------------------------------------- /web/js/color_picker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/color_picker.js -------------------------------------------------------------------------------- /web/js/doom_widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/doom_widget.js -------------------------------------------------------------------------------- /web/js/drawable_feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/drawable_feature.js -------------------------------------------------------------------------------- /web/js/feature_templates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/feature_templates.js -------------------------------------------------------------------------------- /web/js/help_popup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/help_popup.js -------------------------------------------------------------------------------- /web/js/load_iro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/load_iro.js -------------------------------------------------------------------------------- /web/js/midi_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/midi_extensions.js -------------------------------------------------------------------------------- /web/js/midi_loader_extensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/midi_loader_extensions.js -------------------------------------------------------------------------------- /web/js/min_max_widget_validation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/min_max_widget_validation.js -------------------------------------------------------------------------------- /web/js/piano.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/piano.js -------------------------------------------------------------------------------- /web/js/pitch_extension.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/pitch_extension.js -------------------------------------------------------------------------------- /web/js/suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryanontheinside/ComfyUI_RyanOnTheInside/HEAD/web/js/suggestions.js --------------------------------------------------------------------------------