├── .DS_Store ├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── README.md ├── __init__.py ├── fonts ├── Barcode.ttf ├── Circles.ttf ├── Fancy.otf ├── Pattern.otf ├── Square.TTF └── arial.ttf ├── images ├── .DS_Store └── nodes │ ├── HF.png │ ├── Patreon.png │ ├── Utility_nodes.png │ ├── VFX_nodes.png │ ├── ai.png │ ├── api.png │ ├── captioning_nodes.png │ ├── clip.png │ ├── discord.png │ ├── experimental.png │ ├── games.png │ ├── googledrive.png │ ├── gpt_nodes.png │ ├── images_nodes.png │ ├── ksampler_nodes.png │ ├── loaders.png │ ├── math.png │ ├── pDF_nodes.png │ ├── prompting.png │ ├── video.png │ ├── wip.png │ └── zip.png ├── linux_req_install.sh ├── nodes ├── .DS_Store ├── __init__.py ├── ai │ ├── FL_Fal_Gemini_ImageEdit.py │ ├── FL_Fal_Kling_AIAvatar.py │ ├── FL_Fal_Kontext.py │ ├── FL_Fal_Pixverse.py │ ├── FL_Fal_Pixverse_LipSync.py │ ├── FL_Fal_Pixverse_Transition.py │ ├── FL_Fal_SeedVR_Upscale.py │ ├── FL_Fal_Seedance_i2v.py │ ├── FL_Fal_Seedream_Edit.py │ ├── FL_Fal_Sora.py │ ├── FL_GeminiImageEditor.py │ ├── FL_GeminiImageGenADV.py │ ├── FL_GeminiTextAPI.py │ ├── FL_GeminiVideoCaptioner.py │ ├── FL_Hedra_API.py │ ├── FL_PixVerseAPI.py │ ├── FL_RunwayAct2.py │ ├── FL_RunwayImageAPI.py │ ├── FL_VertexGemini25FlashImage.py │ ├── FL_VertexVeo3.py │ └── __init__.py ├── api_tools │ ├── FL_API_Base64_ImageLoader.py │ ├── FL_API_ImageSaver.py │ └── __init__.py ├── audio │ ├── FL_Audio_BPM_Analyzer.py │ ├── FL_Audio_Beat_Visualizer.py │ ├── FL_Audio_Crop.py │ ├── FL_Audio_Drum_Detector.py │ ├── FL_Audio_Envelope_Visualizer.py │ ├── FL_Audio_Music_Video_Sequencer.py │ ├── FL_Audio_Reactive_Brightness.py │ ├── FL_Audio_Reactive_Edge_Glow.py │ ├── FL_Audio_Reactive_Envelope.py │ ├── FL_Audio_Reactive_Saturation.py │ ├── FL_Audio_Reactive_Scale.py │ ├── FL_Audio_Reactive_Speed.py │ ├── FL_Audio_Segment_Extractor.py │ ├── FL_Audio_Separation.py │ ├── FL_Audio_Shot_Iterator.py │ └── __init__.py ├── captioning │ ├── FL_CSVExtractor.py │ ├── FL_CaptionToCSV.py │ ├── FL_Caption_Saver_V2.py │ ├── FL_ImageCaptionLayout.py │ ├── FL_ImageCaptionLayoutPDF.py │ ├── FL_Image_Caption_Saver.py │ ├── FL_LoadCSV.py │ ├── FL_MirrorAndAppendCaptions.py │ ├── FL_OllamaCaptioner.py │ ├── FL_SaveCSV.py │ ├── FL_Video_Caption_Saver.py │ ├── FL_WordFrequencyGraph.py │ └── __init__.py ├── discord │ ├── FL_DiscordWebhook.py │ └── __init__.py ├── experiments │ ├── FL_BatchAligned.py │ ├── FL_ColorPicker.py │ ├── FL_GradGen.py │ ├── FL_NFTGenerator.py │ └── __init__.py ├── file_operations │ ├── FL_ZipDirectory.py │ ├── FL_ZipSave.py │ └── __init__.py ├── film_arch.py ├── games │ ├── FL_BulletHellGame.py │ ├── FL_TetrisGame.py │ └── __init__.py ├── google_drive │ ├── FL_GoogleCloudStorage.py │ ├── FL_GoogleDriveDownloader.py │ ├── FL_GoogleDriveImageDownloader.py │ └── __init__.py ├── gpt │ ├── FL_Dalle3.py │ ├── FL_GPT_Image1.py │ ├── FL_GPT_Image1_ADV.py │ ├── FL_GPT_Text.py │ ├── FL_GPT_Vision.py │ ├── FL_SimpleGPTVision.py │ └── __init__.py ├── hugging_face │ ├── FL_HFDatasetDownloader.py │ ├── FL_HFHubModelUploader.py │ ├── FL_HF_Character.py │ ├── FL_HF_UploaderAbsolute.py │ └── __init__.py ├── image │ ├── FL_AnimeLineExtractor.py │ ├── FL_ApplyMask.py │ ├── FL_BlackFrameReject.py │ ├── FL_ImageAddNoise.py │ ├── FL_ImageAdjuster.py │ ├── FL_ImageAspectCropper.py │ ├── FL_ImageBatch.py │ ├── FL_ImageBatchListConverter.py │ ├── FL_ImageBatchToGrid.py │ ├── FL_ImageNotes.py │ ├── FL_ImageOverlay.py │ ├── FL_ImagePicker.py │ ├── FL_ImageSelector.py │ ├── FL_ImageSlicer.py │ ├── FL_Image_AddToBatch.py │ ├── FL_Image_Blank.py │ ├── FL_Image_Crop.py │ ├── FL_Image_Dimension_Display.py │ ├── FL_Image_Randomizer.py │ ├── FL_LoadImage.py │ ├── FL_PaddingRemover.py │ ├── FL_ReplaceColor.py │ ├── FL_SaveAndDisplayImage.py │ ├── FL_SaveImages.py │ ├── FL_SaveRGBAAnimatedWebP.py │ ├── FL_SaveWebM.py │ ├── FL_SaveWebpImages.py │ └── __init__.py ├── ksamplers │ ├── FL_KSamplerXYZPlot.py │ ├── FL_KsamplerBasic.py │ ├── FL_KsamplerPlus.py │ ├── FL_KsamplerPlusV2.py │ ├── FL_KsamplerSettings.py │ ├── FL_SamplerStrings.py │ ├── FL_SchedulerStrings.py │ └── __init__.py ├── loaders │ ├── FL_NodeLoader.py │ ├── FL_NodePackLoader.py │ ├── FL_UpscaleModel.py │ └── __init__.py ├── node_descriptions.json ├── pdf │ ├── FL_BulkPDFLoader.py │ ├── FL_ImagesToPDF.py │ ├── FL_PDFEncryptor.py │ ├── FL_PDFImageExtractor.py │ ├── FL_PDFLoader.py │ ├── FL_PDFMerger.py │ ├── FL_PDFSaver.py │ ├── FL_PDFTextExtractor.py │ ├── FL_PDFToImage.py │ ├── FL_TextToPDF.py │ └── __init__.py ├── prompting │ ├── FL_MadLibGenerator.py │ ├── FL_Prompt.py │ ├── FL_PromptMulti.py │ ├── FL_PromptSelector.py │ ├── FL_PromptSelectorBasic.py │ └── __init__.py ├── rife_arch.py ├── scanner.py ├── sup.py ├── utility │ ├── FL_ClipScanner.py │ ├── FL_Code_Node.py │ ├── FL_DirectoryCrawl.py │ ├── FL_Float.py │ ├── FL_InpaintCrop.py │ ├── FL_JS.py │ ├── FL_Math.py │ ├── FL_ModelInspector.py │ ├── FL_NumberConverter.py │ ├── FL_Padding.py │ ├── FL_PasteByMask.py │ ├── FL_PasteOnCanvas.py │ ├── FL_PathTypeChecker.py │ ├── FL_RandomRange.py │ ├── FL_RandomShapeGenerator.py │ ├── FL_SD_Slices.py │ ├── FL_SeparateMasks.py │ ├── FL_Switch.py │ ├── FL_Switch_Big.py │ ├── FL_SystemCheck.py │ ├── FL_UnloadModel.py │ ├── FL_VideoCropNStitch.py │ └── __init__.py ├── utils.py ├── vfx │ ├── FL_Ascii.py │ ├── FL_Dither.py │ ├── FL_Glitch.py │ ├── FL_HalfTone.py │ ├── FL_HexagonalPattern.py │ ├── FL_ImageCollage.py │ ├── FL_Image_Pixelator.py │ ├── FL_InfiniteZoom.py │ ├── FL_PaperDrawn.py │ ├── FL_PixelArt.py │ ├── FL_PixelSort.py │ ├── FL_RetroEffect.py │ ├── FL_Ripple.py │ ├── FL_Shader.py │ ├── FL_TextOverlay.py │ └── __init__.py ├── video │ ├── FL_FILM.py │ ├── FL_ProResVideo.py │ ├── FL_RIFE.py │ ├── FL_VideoBatchSplitter.py │ ├── FL_VideoCadence.py │ ├── FL_VideoCadenceCompile.py │ ├── FL_VideoCrossfade.py │ ├── FL_VideoCut.py │ ├── FL_VideoTrim.py │ └── __init__.py └── wip │ ├── FL_AnimatedShapePatterns.py │ ├── FL_KsamplerFractals.py │ ├── FL_PathAnimator.py │ ├── FL_QwenImageEditStrength.py │ ├── FL_TimeLine.py │ ├── FL_WF_Agent.py │ ├── FL_WanFirstLastFrameToVideo.py │ ├── FL_WanVaceToVideoMultiRef.py │ ├── FL_WanVideoBlender.py │ ├── FL_WanVideoBlender3Way.py │ ├── FL_WanVideoContinuationBlender.py │ ├── FL_WanVideoContinue.py │ └── __init__.py ├── pyproject.toml ├── requirements.txt └── web ├── .DS_Store ├── FL_SystemCheck.js ├── PhotoPea.js ├── appearance.js ├── betterCombos.js ├── nodes ├── ai │ ├── FL_Fal_Kontext.js │ └── FL_GeminiImageGenADV.js ├── experiments │ ├── FL_ColorPicker.js │ └── GradientImageGenerator.js ├── games │ ├── FL_BulletHell.js │ └── FL_TetrisGame.js ├── google_drive │ └── FL_GoogleDriveImageDownloader.js ├── gpt │ ├── FL_Dalle3.js │ └── FL_GPT_Image1_ADV.js ├── image │ ├── FL_ImageAdjuster.js │ ├── FL_ImageBatch.js │ ├── FL_ImageOverlay.js │ ├── FL_ImagePicker.js │ ├── FL_LoadImage.js │ ├── FL_ReplaceColor.js │ ├── FL_SaveImages.js │ ├── FL_SaveWebpImages.js │ └── SaveAndDisplayImage.js ├── loaders │ ├── FL_NodeLoader.js │ └── FL_NodePackLoader.js ├── node_definitions.txt ├── node_definitions.txt.bak ├── utility │ ├── FL_PasteOnCanvas.js │ ├── FL_Switch.js │ ├── FL_Switch_Big.js │ ├── fl_code_node.js │ └── fl_js.js ├── vfx │ └── FL_PixelArtNode.js ├── video │ └── FL_VideoBatchSplitter.js └── wip │ ├── FL_PathAnimator.js │ ├── FL_TimeLine.js │ └── fl_wf_agent.js └── widget.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.sh text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/__init__.py -------------------------------------------------------------------------------- /fonts/Barcode.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/fonts/Barcode.ttf -------------------------------------------------------------------------------- /fonts/Circles.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/fonts/Circles.ttf -------------------------------------------------------------------------------- /fonts/Fancy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/fonts/Fancy.otf -------------------------------------------------------------------------------- /fonts/Pattern.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/fonts/Pattern.otf -------------------------------------------------------------------------------- /fonts/Square.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/fonts/Square.TTF -------------------------------------------------------------------------------- /fonts/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/fonts/arial.ttf -------------------------------------------------------------------------------- /images/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/.DS_Store -------------------------------------------------------------------------------- /images/nodes/HF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/HF.png -------------------------------------------------------------------------------- /images/nodes/Patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/Patreon.png -------------------------------------------------------------------------------- /images/nodes/Utility_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/Utility_nodes.png -------------------------------------------------------------------------------- /images/nodes/VFX_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/VFX_nodes.png -------------------------------------------------------------------------------- /images/nodes/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/ai.png -------------------------------------------------------------------------------- /images/nodes/api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/api.png -------------------------------------------------------------------------------- /images/nodes/captioning_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/captioning_nodes.png -------------------------------------------------------------------------------- /images/nodes/clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/clip.png -------------------------------------------------------------------------------- /images/nodes/discord.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/discord.png -------------------------------------------------------------------------------- /images/nodes/experimental.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/experimental.png -------------------------------------------------------------------------------- /images/nodes/games.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/games.png -------------------------------------------------------------------------------- /images/nodes/googledrive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/googledrive.png -------------------------------------------------------------------------------- /images/nodes/gpt_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/gpt_nodes.png -------------------------------------------------------------------------------- /images/nodes/images_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/images_nodes.png -------------------------------------------------------------------------------- /images/nodes/ksampler_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/ksampler_nodes.png -------------------------------------------------------------------------------- /images/nodes/loaders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/loaders.png -------------------------------------------------------------------------------- /images/nodes/math.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/math.png -------------------------------------------------------------------------------- /images/nodes/pDF_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/pDF_nodes.png -------------------------------------------------------------------------------- /images/nodes/prompting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/prompting.png -------------------------------------------------------------------------------- /images/nodes/video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/video.png -------------------------------------------------------------------------------- /images/nodes/wip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/wip.png -------------------------------------------------------------------------------- /images/nodes/zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/images/nodes/zip.png -------------------------------------------------------------------------------- /linux_req_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/linux_req_install.sh -------------------------------------------------------------------------------- /nodes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/.DS_Store -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Gemini_ImageEdit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Gemini_ImageEdit.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Kling_AIAvatar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Kling_AIAvatar.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Kontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Kontext.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Pixverse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Pixverse.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Pixverse_LipSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Pixverse_LipSync.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Pixverse_Transition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Pixverse_Transition.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_SeedVR_Upscale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_SeedVR_Upscale.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Seedance_i2v.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Seedance_i2v.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Seedream_Edit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Seedream_Edit.py -------------------------------------------------------------------------------- /nodes/ai/FL_Fal_Sora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Fal_Sora.py -------------------------------------------------------------------------------- /nodes/ai/FL_GeminiImageEditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_GeminiImageEditor.py -------------------------------------------------------------------------------- /nodes/ai/FL_GeminiImageGenADV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_GeminiImageGenADV.py -------------------------------------------------------------------------------- /nodes/ai/FL_GeminiTextAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_GeminiTextAPI.py -------------------------------------------------------------------------------- /nodes/ai/FL_GeminiVideoCaptioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_GeminiVideoCaptioner.py -------------------------------------------------------------------------------- /nodes/ai/FL_Hedra_API.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_Hedra_API.py -------------------------------------------------------------------------------- /nodes/ai/FL_PixVerseAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_PixVerseAPI.py -------------------------------------------------------------------------------- /nodes/ai/FL_RunwayAct2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_RunwayAct2.py -------------------------------------------------------------------------------- /nodes/ai/FL_RunwayImageAPI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_RunwayImageAPI.py -------------------------------------------------------------------------------- /nodes/ai/FL_VertexGemini25FlashImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_VertexGemini25FlashImage.py -------------------------------------------------------------------------------- /nodes/ai/FL_VertexVeo3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ai/FL_VertexVeo3.py -------------------------------------------------------------------------------- /nodes/ai/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Ai""" 2 | -------------------------------------------------------------------------------- /nodes/api_tools/FL_API_Base64_ImageLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/api_tools/FL_API_Base64_ImageLoader.py -------------------------------------------------------------------------------- /nodes/api_tools/FL_API_ImageSaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/api_tools/FL_API_ImageSaver.py -------------------------------------------------------------------------------- /nodes/api_tools/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Api_Tools""" 2 | -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_BPM_Analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_BPM_Analyzer.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Beat_Visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Beat_Visualizer.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Crop.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Drum_Detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Drum_Detector.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Envelope_Visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Envelope_Visualizer.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Music_Video_Sequencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Music_Video_Sequencer.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Reactive_Brightness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Reactive_Brightness.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Reactive_Edge_Glow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Reactive_Edge_Glow.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Reactive_Envelope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Reactive_Envelope.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Reactive_Saturation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Reactive_Saturation.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Reactive_Scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Reactive_Scale.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Reactive_Speed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Reactive_Speed.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Segment_Extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Segment_Extractor.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Separation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Separation.py -------------------------------------------------------------------------------- /nodes/audio/FL_Audio_Shot_Iterator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/audio/FL_Audio_Shot_Iterator.py -------------------------------------------------------------------------------- /nodes/audio/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Audio""" 2 | -------------------------------------------------------------------------------- /nodes/captioning/FL_CSVExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_CSVExtractor.py -------------------------------------------------------------------------------- /nodes/captioning/FL_CaptionToCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_CaptionToCSV.py -------------------------------------------------------------------------------- /nodes/captioning/FL_Caption_Saver_V2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_Caption_Saver_V2.py -------------------------------------------------------------------------------- /nodes/captioning/FL_ImageCaptionLayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_ImageCaptionLayout.py -------------------------------------------------------------------------------- /nodes/captioning/FL_ImageCaptionLayoutPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_ImageCaptionLayoutPDF.py -------------------------------------------------------------------------------- /nodes/captioning/FL_Image_Caption_Saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_Image_Caption_Saver.py -------------------------------------------------------------------------------- /nodes/captioning/FL_LoadCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_LoadCSV.py -------------------------------------------------------------------------------- /nodes/captioning/FL_MirrorAndAppendCaptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_MirrorAndAppendCaptions.py -------------------------------------------------------------------------------- /nodes/captioning/FL_OllamaCaptioner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_OllamaCaptioner.py -------------------------------------------------------------------------------- /nodes/captioning/FL_SaveCSV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_SaveCSV.py -------------------------------------------------------------------------------- /nodes/captioning/FL_Video_Caption_Saver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_Video_Caption_Saver.py -------------------------------------------------------------------------------- /nodes/captioning/FL_WordFrequencyGraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/captioning/FL_WordFrequencyGraph.py -------------------------------------------------------------------------------- /nodes/captioning/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Captioning""" 2 | -------------------------------------------------------------------------------- /nodes/discord/FL_DiscordWebhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/discord/FL_DiscordWebhook.py -------------------------------------------------------------------------------- /nodes/discord/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Discord""" 2 | -------------------------------------------------------------------------------- /nodes/experiments/FL_BatchAligned.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/experiments/FL_BatchAligned.py -------------------------------------------------------------------------------- /nodes/experiments/FL_ColorPicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/experiments/FL_ColorPicker.py -------------------------------------------------------------------------------- /nodes/experiments/FL_GradGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/experiments/FL_GradGen.py -------------------------------------------------------------------------------- /nodes/experiments/FL_NFTGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/experiments/FL_NFTGenerator.py -------------------------------------------------------------------------------- /nodes/experiments/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Experiments""" 2 | -------------------------------------------------------------------------------- /nodes/file_operations/FL_ZipDirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/file_operations/FL_ZipDirectory.py -------------------------------------------------------------------------------- /nodes/file_operations/FL_ZipSave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/file_operations/FL_ZipSave.py -------------------------------------------------------------------------------- /nodes/file_operations/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: File_Operations""" 2 | -------------------------------------------------------------------------------- /nodes/film_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/film_arch.py -------------------------------------------------------------------------------- /nodes/games/FL_BulletHellGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/games/FL_BulletHellGame.py -------------------------------------------------------------------------------- /nodes/games/FL_TetrisGame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/games/FL_TetrisGame.py -------------------------------------------------------------------------------- /nodes/games/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Games""" 2 | -------------------------------------------------------------------------------- /nodes/google_drive/FL_GoogleCloudStorage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/google_drive/FL_GoogleCloudStorage.py -------------------------------------------------------------------------------- /nodes/google_drive/FL_GoogleDriveDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/google_drive/FL_GoogleDriveDownloader.py -------------------------------------------------------------------------------- /nodes/google_drive/FL_GoogleDriveImageDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/google_drive/FL_GoogleDriveImageDownloader.py -------------------------------------------------------------------------------- /nodes/google_drive/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Google_Drive""" 2 | -------------------------------------------------------------------------------- /nodes/gpt/FL_Dalle3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/gpt/FL_Dalle3.py -------------------------------------------------------------------------------- /nodes/gpt/FL_GPT_Image1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/gpt/FL_GPT_Image1.py -------------------------------------------------------------------------------- /nodes/gpt/FL_GPT_Image1_ADV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/gpt/FL_GPT_Image1_ADV.py -------------------------------------------------------------------------------- /nodes/gpt/FL_GPT_Text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/gpt/FL_GPT_Text.py -------------------------------------------------------------------------------- /nodes/gpt/FL_GPT_Vision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/gpt/FL_GPT_Vision.py -------------------------------------------------------------------------------- /nodes/gpt/FL_SimpleGPTVision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/gpt/FL_SimpleGPTVision.py -------------------------------------------------------------------------------- /nodes/gpt/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Gpt""" 2 | -------------------------------------------------------------------------------- /nodes/hugging_face/FL_HFDatasetDownloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/hugging_face/FL_HFDatasetDownloader.py -------------------------------------------------------------------------------- /nodes/hugging_face/FL_HFHubModelUploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/hugging_face/FL_HFHubModelUploader.py -------------------------------------------------------------------------------- /nodes/hugging_face/FL_HF_Character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/hugging_face/FL_HF_Character.py -------------------------------------------------------------------------------- /nodes/hugging_face/FL_HF_UploaderAbsolute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/hugging_face/FL_HF_UploaderAbsolute.py -------------------------------------------------------------------------------- /nodes/hugging_face/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Hugging_Face""" 2 | -------------------------------------------------------------------------------- /nodes/image/FL_AnimeLineExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_AnimeLineExtractor.py -------------------------------------------------------------------------------- /nodes/image/FL_ApplyMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ApplyMask.py -------------------------------------------------------------------------------- /nodes/image/FL_BlackFrameReject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_BlackFrameReject.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageAddNoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageAddNoise.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageAdjuster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageAdjuster.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageAspectCropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageAspectCropper.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageBatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageBatch.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageBatchListConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageBatchListConverter.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageBatchToGrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageBatchToGrid.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageNotes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageNotes.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageOverlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageOverlay.py -------------------------------------------------------------------------------- /nodes/image/FL_ImagePicker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImagePicker.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageSelector.py -------------------------------------------------------------------------------- /nodes/image/FL_ImageSlicer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ImageSlicer.py -------------------------------------------------------------------------------- /nodes/image/FL_Image_AddToBatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_Image_AddToBatch.py -------------------------------------------------------------------------------- /nodes/image/FL_Image_Blank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_Image_Blank.py -------------------------------------------------------------------------------- /nodes/image/FL_Image_Crop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_Image_Crop.py -------------------------------------------------------------------------------- /nodes/image/FL_Image_Dimension_Display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_Image_Dimension_Display.py -------------------------------------------------------------------------------- /nodes/image/FL_Image_Randomizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_Image_Randomizer.py -------------------------------------------------------------------------------- /nodes/image/FL_LoadImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_LoadImage.py -------------------------------------------------------------------------------- /nodes/image/FL_PaddingRemover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_PaddingRemover.py -------------------------------------------------------------------------------- /nodes/image/FL_ReplaceColor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_ReplaceColor.py -------------------------------------------------------------------------------- /nodes/image/FL_SaveAndDisplayImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_SaveAndDisplayImage.py -------------------------------------------------------------------------------- /nodes/image/FL_SaveImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_SaveImages.py -------------------------------------------------------------------------------- /nodes/image/FL_SaveRGBAAnimatedWebP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_SaveRGBAAnimatedWebP.py -------------------------------------------------------------------------------- /nodes/image/FL_SaveWebM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_SaveWebM.py -------------------------------------------------------------------------------- /nodes/image/FL_SaveWebpImages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/image/FL_SaveWebpImages.py -------------------------------------------------------------------------------- /nodes/image/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Image""" 2 | -------------------------------------------------------------------------------- /nodes/ksamplers/FL_KSamplerXYZPlot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_KSamplerXYZPlot.py -------------------------------------------------------------------------------- /nodes/ksamplers/FL_KsamplerBasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_KsamplerBasic.py -------------------------------------------------------------------------------- /nodes/ksamplers/FL_KsamplerPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_KsamplerPlus.py -------------------------------------------------------------------------------- /nodes/ksamplers/FL_KsamplerPlusV2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_KsamplerPlusV2.py -------------------------------------------------------------------------------- /nodes/ksamplers/FL_KsamplerSettings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_KsamplerSettings.py -------------------------------------------------------------------------------- /nodes/ksamplers/FL_SamplerStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_SamplerStrings.py -------------------------------------------------------------------------------- /nodes/ksamplers/FL_SchedulerStrings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/ksamplers/FL_SchedulerStrings.py -------------------------------------------------------------------------------- /nodes/ksamplers/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Ksamplers""" 2 | -------------------------------------------------------------------------------- /nodes/loaders/FL_NodeLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/loaders/FL_NodeLoader.py -------------------------------------------------------------------------------- /nodes/loaders/FL_NodePackLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/loaders/FL_NodePackLoader.py -------------------------------------------------------------------------------- /nodes/loaders/FL_UpscaleModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/loaders/FL_UpscaleModel.py -------------------------------------------------------------------------------- /nodes/loaders/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Loaders""" 2 | -------------------------------------------------------------------------------- /nodes/node_descriptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/node_descriptions.json -------------------------------------------------------------------------------- /nodes/pdf/FL_BulkPDFLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_BulkPDFLoader.py -------------------------------------------------------------------------------- /nodes/pdf/FL_ImagesToPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_ImagesToPDF.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFEncryptor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFEncryptor.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFImageExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFImageExtractor.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFLoader.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFMerger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFMerger.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFSaver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFSaver.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFTextExtractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFTextExtractor.py -------------------------------------------------------------------------------- /nodes/pdf/FL_PDFToImage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_PDFToImage.py -------------------------------------------------------------------------------- /nodes/pdf/FL_TextToPDF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/pdf/FL_TextToPDF.py -------------------------------------------------------------------------------- /nodes/pdf/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Pdf""" 2 | -------------------------------------------------------------------------------- /nodes/prompting/FL_MadLibGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/prompting/FL_MadLibGenerator.py -------------------------------------------------------------------------------- /nodes/prompting/FL_Prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/prompting/FL_Prompt.py -------------------------------------------------------------------------------- /nodes/prompting/FL_PromptMulti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/prompting/FL_PromptMulti.py -------------------------------------------------------------------------------- /nodes/prompting/FL_PromptSelector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/prompting/FL_PromptSelector.py -------------------------------------------------------------------------------- /nodes/prompting/FL_PromptSelectorBasic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/prompting/FL_PromptSelectorBasic.py -------------------------------------------------------------------------------- /nodes/prompting/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Prompting""" 2 | -------------------------------------------------------------------------------- /nodes/rife_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/rife_arch.py -------------------------------------------------------------------------------- /nodes/scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/scanner.py -------------------------------------------------------------------------------- /nodes/sup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/sup.py -------------------------------------------------------------------------------- /nodes/utility/FL_ClipScanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_ClipScanner.py -------------------------------------------------------------------------------- /nodes/utility/FL_Code_Node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_Code_Node.py -------------------------------------------------------------------------------- /nodes/utility/FL_DirectoryCrawl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_DirectoryCrawl.py -------------------------------------------------------------------------------- /nodes/utility/FL_Float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_Float.py -------------------------------------------------------------------------------- /nodes/utility/FL_InpaintCrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_InpaintCrop.py -------------------------------------------------------------------------------- /nodes/utility/FL_JS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_JS.py -------------------------------------------------------------------------------- /nodes/utility/FL_Math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_Math.py -------------------------------------------------------------------------------- /nodes/utility/FL_ModelInspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_ModelInspector.py -------------------------------------------------------------------------------- /nodes/utility/FL_NumberConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_NumberConverter.py -------------------------------------------------------------------------------- /nodes/utility/FL_Padding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_Padding.py -------------------------------------------------------------------------------- /nodes/utility/FL_PasteByMask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_PasteByMask.py -------------------------------------------------------------------------------- /nodes/utility/FL_PasteOnCanvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_PasteOnCanvas.py -------------------------------------------------------------------------------- /nodes/utility/FL_PathTypeChecker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_PathTypeChecker.py -------------------------------------------------------------------------------- /nodes/utility/FL_RandomRange.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_RandomRange.py -------------------------------------------------------------------------------- /nodes/utility/FL_RandomShapeGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_RandomShapeGenerator.py -------------------------------------------------------------------------------- /nodes/utility/FL_SD_Slices.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_SD_Slices.py -------------------------------------------------------------------------------- /nodes/utility/FL_SeparateMasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_SeparateMasks.py -------------------------------------------------------------------------------- /nodes/utility/FL_Switch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_Switch.py -------------------------------------------------------------------------------- /nodes/utility/FL_Switch_Big.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_Switch_Big.py -------------------------------------------------------------------------------- /nodes/utility/FL_SystemCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_SystemCheck.py -------------------------------------------------------------------------------- /nodes/utility/FL_UnloadModel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_UnloadModel.py -------------------------------------------------------------------------------- /nodes/utility/FL_VideoCropNStitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utility/FL_VideoCropNStitch.py -------------------------------------------------------------------------------- /nodes/utility/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Utility""" 2 | -------------------------------------------------------------------------------- /nodes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/utils.py -------------------------------------------------------------------------------- /nodes/vfx/FL_Ascii.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_Ascii.py -------------------------------------------------------------------------------- /nodes/vfx/FL_Dither.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_Dither.py -------------------------------------------------------------------------------- /nodes/vfx/FL_Glitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_Glitch.py -------------------------------------------------------------------------------- /nodes/vfx/FL_HalfTone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_HalfTone.py -------------------------------------------------------------------------------- /nodes/vfx/FL_HexagonalPattern.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_HexagonalPattern.py -------------------------------------------------------------------------------- /nodes/vfx/FL_ImageCollage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_ImageCollage.py -------------------------------------------------------------------------------- /nodes/vfx/FL_Image_Pixelator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_Image_Pixelator.py -------------------------------------------------------------------------------- /nodes/vfx/FL_InfiniteZoom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_InfiniteZoom.py -------------------------------------------------------------------------------- /nodes/vfx/FL_PaperDrawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_PaperDrawn.py -------------------------------------------------------------------------------- /nodes/vfx/FL_PixelArt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_PixelArt.py -------------------------------------------------------------------------------- /nodes/vfx/FL_PixelSort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_PixelSort.py -------------------------------------------------------------------------------- /nodes/vfx/FL_RetroEffect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_RetroEffect.py -------------------------------------------------------------------------------- /nodes/vfx/FL_Ripple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_Ripple.py -------------------------------------------------------------------------------- /nodes/vfx/FL_Shader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_Shader.py -------------------------------------------------------------------------------- /nodes/vfx/FL_TextOverlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/vfx/FL_TextOverlay.py -------------------------------------------------------------------------------- /nodes/vfx/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Vfx""" 2 | -------------------------------------------------------------------------------- /nodes/video/FL_FILM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_FILM.py -------------------------------------------------------------------------------- /nodes/video/FL_ProResVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_ProResVideo.py -------------------------------------------------------------------------------- /nodes/video/FL_RIFE.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_RIFE.py -------------------------------------------------------------------------------- /nodes/video/FL_VideoBatchSplitter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_VideoBatchSplitter.py -------------------------------------------------------------------------------- /nodes/video/FL_VideoCadence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_VideoCadence.py -------------------------------------------------------------------------------- /nodes/video/FL_VideoCadenceCompile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_VideoCadenceCompile.py -------------------------------------------------------------------------------- /nodes/video/FL_VideoCrossfade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_VideoCrossfade.py -------------------------------------------------------------------------------- /nodes/video/FL_VideoCut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_VideoCut.py -------------------------------------------------------------------------------- /nodes/video/FL_VideoTrim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/video/FL_VideoTrim.py -------------------------------------------------------------------------------- /nodes/video/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Video""" 2 | -------------------------------------------------------------------------------- /nodes/wip/FL_AnimatedShapePatterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_AnimatedShapePatterns.py -------------------------------------------------------------------------------- /nodes/wip/FL_KsamplerFractals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_KsamplerFractals.py -------------------------------------------------------------------------------- /nodes/wip/FL_PathAnimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_PathAnimator.py -------------------------------------------------------------------------------- /nodes/wip/FL_QwenImageEditStrength.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_QwenImageEditStrength.py -------------------------------------------------------------------------------- /nodes/wip/FL_TimeLine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_TimeLine.py -------------------------------------------------------------------------------- /nodes/wip/FL_WF_Agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WF_Agent.py -------------------------------------------------------------------------------- /nodes/wip/FL_WanFirstLastFrameToVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WanFirstLastFrameToVideo.py -------------------------------------------------------------------------------- /nodes/wip/FL_WanVaceToVideoMultiRef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WanVaceToVideoMultiRef.py -------------------------------------------------------------------------------- /nodes/wip/FL_WanVideoBlender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WanVideoBlender.py -------------------------------------------------------------------------------- /nodes/wip/FL_WanVideoBlender3Way.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WanVideoBlender3Way.py -------------------------------------------------------------------------------- /nodes/wip/FL_WanVideoContinuationBlender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WanVideoContinuationBlender.py -------------------------------------------------------------------------------- /nodes/wip/FL_WanVideoContinue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/nodes/wip/FL_WanVideoContinue.py -------------------------------------------------------------------------------- /nodes/wip/__init__.py: -------------------------------------------------------------------------------- 1 | """Fill-Nodes Category: Wip""" 2 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/requirements.txt -------------------------------------------------------------------------------- /web/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/.DS_Store -------------------------------------------------------------------------------- /web/FL_SystemCheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/FL_SystemCheck.js -------------------------------------------------------------------------------- /web/PhotoPea.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/PhotoPea.js -------------------------------------------------------------------------------- /web/appearance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/appearance.js -------------------------------------------------------------------------------- /web/betterCombos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/betterCombos.js -------------------------------------------------------------------------------- /web/nodes/ai/FL_Fal_Kontext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/ai/FL_Fal_Kontext.js -------------------------------------------------------------------------------- /web/nodes/ai/FL_GeminiImageGenADV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/ai/FL_GeminiImageGenADV.js -------------------------------------------------------------------------------- /web/nodes/experiments/FL_ColorPicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/experiments/FL_ColorPicker.js -------------------------------------------------------------------------------- /web/nodes/experiments/GradientImageGenerator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/experiments/GradientImageGenerator.js -------------------------------------------------------------------------------- /web/nodes/games/FL_BulletHell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/games/FL_BulletHell.js -------------------------------------------------------------------------------- /web/nodes/games/FL_TetrisGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/games/FL_TetrisGame.js -------------------------------------------------------------------------------- /web/nodes/google_drive/FL_GoogleDriveImageDownloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/google_drive/FL_GoogleDriveImageDownloader.js -------------------------------------------------------------------------------- /web/nodes/gpt/FL_Dalle3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/gpt/FL_Dalle3.js -------------------------------------------------------------------------------- /web/nodes/gpt/FL_GPT_Image1_ADV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/gpt/FL_GPT_Image1_ADV.js -------------------------------------------------------------------------------- /web/nodes/image/FL_ImageAdjuster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_ImageAdjuster.js -------------------------------------------------------------------------------- /web/nodes/image/FL_ImageBatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_ImageBatch.js -------------------------------------------------------------------------------- /web/nodes/image/FL_ImageOverlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_ImageOverlay.js -------------------------------------------------------------------------------- /web/nodes/image/FL_ImagePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_ImagePicker.js -------------------------------------------------------------------------------- /web/nodes/image/FL_LoadImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_LoadImage.js -------------------------------------------------------------------------------- /web/nodes/image/FL_ReplaceColor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_ReplaceColor.js -------------------------------------------------------------------------------- /web/nodes/image/FL_SaveImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_SaveImages.js -------------------------------------------------------------------------------- /web/nodes/image/FL_SaveWebpImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/FL_SaveWebpImages.js -------------------------------------------------------------------------------- /web/nodes/image/SaveAndDisplayImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/image/SaveAndDisplayImage.js -------------------------------------------------------------------------------- /web/nodes/loaders/FL_NodeLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/loaders/FL_NodeLoader.js -------------------------------------------------------------------------------- /web/nodes/loaders/FL_NodePackLoader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/loaders/FL_NodePackLoader.js -------------------------------------------------------------------------------- /web/nodes/node_definitions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/node_definitions.txt -------------------------------------------------------------------------------- /web/nodes/node_definitions.txt.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/node_definitions.txt.bak -------------------------------------------------------------------------------- /web/nodes/utility/FL_PasteOnCanvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/utility/FL_PasteOnCanvas.js -------------------------------------------------------------------------------- /web/nodes/utility/FL_Switch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/utility/FL_Switch.js -------------------------------------------------------------------------------- /web/nodes/utility/FL_Switch_Big.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/utility/FL_Switch_Big.js -------------------------------------------------------------------------------- /web/nodes/utility/fl_code_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/utility/fl_code_node.js -------------------------------------------------------------------------------- /web/nodes/utility/fl_js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/utility/fl_js.js -------------------------------------------------------------------------------- /web/nodes/vfx/FL_PixelArtNode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/vfx/FL_PixelArtNode.js -------------------------------------------------------------------------------- /web/nodes/video/FL_VideoBatchSplitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/video/FL_VideoBatchSplitter.js -------------------------------------------------------------------------------- /web/nodes/wip/FL_PathAnimator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/wip/FL_PathAnimator.js -------------------------------------------------------------------------------- /web/nodes/wip/FL_TimeLine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/wip/FL_TimeLine.js -------------------------------------------------------------------------------- /web/nodes/wip/fl_wf_agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/nodes/wip/fl_wf_agent.js -------------------------------------------------------------------------------- /web/widget.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filliptm/ComfyUI_Fill-Nodes/HEAD/web/widget.js --------------------------------------------------------------------------------