{"id":33899377,"url":"https://github.com/bradsec/ComfyUI_ResolutionSelectorPlus","last_synced_at":"2025-12-16T21:00:43.216Z","repository":{"id":189085198,"uuid":"680005725","full_name":"bradsec/ComfyUI_ResolutionSelectorPlus","owner":"bradsec","description":"Custom node for ComfyUI providing easy resolution and empty latent selection for image generation workflows.","archived":false,"fork":false,"pushed_at":"2025-12-07T10:46:58.000Z","size":1211,"stargazers_count":14,"open_issues_count":2,"forks_count":6,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-10T02:57:32.070Z","etag":null,"topics":["comfyui","comfyui-nodes"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bradsec.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-08-18T06:01:02.000Z","updated_at":"2025-12-07T10:47:02.000Z","dependencies_parsed_at":"2024-07-07T13:49:32.171Z","dependency_job_id":null,"html_url":"https://github.com/bradsec/ComfyUI_ResolutionSelectorPlus","commit_stats":null,"previous_names":["bradsec/comfyui_resolutionselector"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/bradsec/ComfyUI_ResolutionSelectorPlus","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradsec%2FComfyUI_ResolutionSelectorPlus","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradsec%2FComfyUI_ResolutionSelectorPlus/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradsec%2FComfyUI_ResolutionSelectorPlus/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradsec%2FComfyUI_ResolutionSelectorPlus/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bradsec","download_url":"https://codeload.github.com/bradsec/ComfyUI_ResolutionSelectorPlus/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bradsec%2FComfyUI_ResolutionSelectorPlus/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27771143,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-12-16T02:00:10.477Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["comfyui","comfyui-nodes"],"created_at":"2025-12-11T22:00:48.897Z","updated_at":"2025-12-16T21:00:43.209Z","avatar_url":"https://github.com/bradsec.png","language":"Python","funding_links":[],"categories":["Workflows pushed in 7 days"],"sub_categories":[],"readme":"# Resolution Selector Plus for ComfyUI\n\nCustom node for [ComfyUI](https://github.com/comfyanonymous/ComfyUI) providing easy resolution and empty latent selection for image generation workflows.\n\n![Node Preview](node_preview.png)\n\n## Features\n\n### Resolution Selector\n- **Model-optimised resolution presets** (portrait, landscape, square)\n- **Empty latent output** for direct KSampler connection\n- **Custom width/height inputs** with **independent multiplier and latent**\n\n## Installation\n\n```bash\n# Change to the directory you installed ComfyUI\ncd pathTo/ComfyUI\n\n# Change to the custom_nodes directory\ncd custom_nodes\n\n# Clone the repo into custom_nodes\ngit clone https://github.com/bradsec/ComfyUI_ResolutionSelectorPlus.git\n\n# Restart ComfyUI\n```\n\n## Usage\n\n### Resolution Selector Plus\n\n**Add Node:** `Add Node \u003e utils \u003e Resolution Selector Plus`\n\n**Inputs:**\n- `model` (dropdown) - Select your image generation model or \"All\" for all resolutions\n- `resolution` (dropdown) - Choose from model-optimized presets with aspect ratios (e.g., \"1920x1080 (16:9 Landscape)\")\n- `resolution_multiplier` (dropdown) - Multiply preset resolution (1x, 2x, 3x, 4x)\n- `batch_size` (number) - Number of latent samples to generate (1-64, default: 1)\n- `custom_width` (optional) - Override with custom width (0-4096, step 8)\n- `custom_height` (optional) - Override with custom height (0-4096, step 8)\n- `custom_multiplier` (optional) - Independent multiplier for custom dimensions (1x, 2x, 3x, 4x)\n- `custom_batch` (optional) - Number of latent samples for custom resolution (1-64, default: 1)\n\n**Outputs:**\n- `width` (INT) - Preset resolution width in pixels\n- `height` (INT) - Preset resolution height in pixels\n- `latent` (LATENT) - Empty latent tensor for preset resolution (batch_size samples)\n- `custom_width` (INT) - Custom width (0 if not set)\n- `custom_height` (INT) - Custom height (0 if not set)\n- `custom_latent` (LATENT) - Empty latent tensor for custom resolution (custom_batch samples)\n\n**Example Workflows:**\n\n**Basic preset with multiplier:**\n```\nResolution Selector Plus (model: SDXL, resolution: \"1024x1024 (1:1 Square)\", multiplier: 2x)\n  → width: 2048, height: 2048\n  → latent → KSampler\n```\n\n**Custom dimensions with independent multiplier:**\n```\nResolution Selector Plus (custom_width: 1024, custom_height: 768, custom_multiplier: 2x)\n  → custom_width: 2048, custom_height: 1536\n  → custom_latent → KSampler\n```\n\n**Using \"All\" model option:**\n```\nResolution Selector Plus (model: All, resolution: \"1920x1080 (16:9 Landscape)\")\n  → Shows all 74 unique resolutions from all models\n```\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbradsec%2FComfyUI_ResolutionSelectorPlus","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbradsec%2FComfyUI_ResolutionSelectorPlus","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbradsec%2FComfyUI_ResolutionSelectorPlus/lists"}