Skip to content

[NODE] Add Veo Node documentation #10

@ShambaC

Description

@ShambaC

Node Config

{
    title: "Veo AI Video",
    category: "GenAI",
    type: "veo_node",
    icon: {},
    desc: "Generate AI videos using Google Veo",
    inputs: [
        {
            desc: "The flow of the workflow",
            name: "Flow",
            type: "Flow",
        },
        {
            desc: "Video generation prompt",
            name: "Prompt",
            type: "Text",
        },
        {
            desc: "Negative video generation prompt",
            name: "Negative Prompt",
            type: "Text",
        },
        {
            desc: "Duration of the video (only applicable for Veo2)",
            name: "Duration",
            type: "Number",
        },
    ],
    outputs: [
        {
            desc: "Temporary link to the video",
            name: "Video Link",
            type: "Text",
        },
    ],
    fields: [
        {
            desc: "Video generation prompt",
            name: "Prompt",
            type: "TextArea",
            value: "Enter text here...",
        },
        {
            desc: "Negative video generation prompt",
            name: "Negative Prompt",
            type: "TextArea",
            value: "Enter text here...",
        },
        {
            desc: "Duration of the video (only applicable for Veo2)",
            name: "Duration",
            type: "Slider",
            value: 6,
            min: 5,
            max: 8,
            step: 1,
        },
        {
            desc: "Model to be used for video generation",
            name: "Model",
            type: "select",
            value: "Veo3",
            options: [
            "Veo3",
            "Veo2"        
            ],
        },
        {
            desc: "Aspect ratio of the video (applicable only for Veo2)",
            name: "Ratio",
            type: "select",
            value: "16:9",
            options: [
            "16:9",
            "9:16"        
            ],
        },
        {
            desc: "Generate audio along with video (applicable only for Veo3)",
            name: "Generate Audio",
            type: "CheckBox",
            value: true,
        },
        {
            desc: "Should people be generated in the video",
            name: "Person",
            type: "select",
            value: "Allow adults",
            options: [
            "Allow adults",
            "Dont allow"        
            ],
        },
    ],
    difficulty: "medium",
    tags: ["veo", "google", "ai", "video"],
}

Additional Information

Long Description:
Google Veo node allows you to create AI videos using Google Veo2 or Veo3, the choice upto you. The node also has plethora of options to configure your AI video generation. Some options are exclusive to Veo2 and some to Veo3. They are:

  • Duration: only applicable to Veo2 (can choose from 5 to 8 seconds. Veo3 can only generate 8 seconds videos)
  • Ratio: only applicable to Veo2 (can also create 9:16 videos while Veo3 can only generate 16:9 videos)
  • Generate Audio: only applicable to Veo3 (only Veo3 can generate audio along with video).

Use Cases:

  • Can be used to create automated video uploads to YouTube.
  • Create videos via telegram messages and easily share among people.
  • Create videos for work purposes, privately.

Metadata

Metadata

Assignees

No one assigned

    Labels

    documentationImprovements or additions to documentation

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions