This ComfyUI workflow, titled 'Single Image to Multiple Consistent Shots,' is designed to transform a single input image into a series of images with varied camera angles and shot types. It leverages the Nano Banana Pro model to ensure high-quality image generation while maintaining consistency across different perspectives. The workflow utilizes a combination of nodes including PreviewAny, GeminiNode, and SaveImage to process and output the images. Custom nodes from comfyui-kjnodes and comfyui_essentials are also employed to enhance the functionality and flexibility of the workflow. By automating the generation of multiple prompts for camera angles, this workflow is particularly useful for creators who need to produce a variety of shots from a single image source, such as in storyboarding or product photography.

API

Use this workflow from code

Every Comfy workflow is a JSON graph. The payload below is this workflow, exactly as ComfyUI runs it — fetch it from the URL, keep it in version control, or load it in ComfyUI and run it node by node.

GET https://comfy.org/workflows/download/9717b437111c.json
Fetching workflow JSON…

Run it from Python or TypeScript with the Comfy SDK. The same code targets Comfy Cloud or a ComfyUI you host yourself — only the base URL changes.

# Install (beta)
pip install comfy-sdk        # Python
npm i @comfyorg/sdk          # TypeScript

# Run "Single Image to Multiple Consistent Shots" (Python)
from comfy_sdk import Comfy

client = Comfy(api_key="comfyui-...")

# This workflow, exported in API format (see note below)
wf = client.workflows.from_file("templates-multiple_consistent_shots-nb_pro_api.json")

asset = client.assets.from_file("input.png")
wf.set_input("6", "image", asset)  # LoadImage

job = client.run(wf)
for output in job.get_outputs("5"):  # SaveImage
    output.to_file(output.name)

The SDK takes a workflow in API format: open this workflow in ComfyUI and use File → Export Workflow (API). API access requires a Comfy Cloud plan with an API key. SDK docs · Get an API key

FAQ

Frequently Asked Questions

View all workflows
Character
Cinematic
Image to Video
Lip Sync
Multiple Angles
Portrait
Style Reference
Style Transfer
Text to Video
Video Generation
Video
Showing 30 of 30 templates