Basic Types
- Text: Represents string data, such as words, sentences, or paragraphs.
- Number: Represents numerical data, including whole and decimal numbers.
- Image: Represents image files in various formats (e.g., PNG, JPEG, GIF).
- Video: Represents video files in common formats (e.g., MP4, AVI, MOV).
- Audio: Represents audio files in formats like MP3, WAV and so on.
Other Types
- File: Represents any type of file (image, video, audio ..), useful for general file handling operations.
- Any: A flexible type that can represent any data type, allowing for more dynamic connections.
List Types
All of the previous types can be wrapped in a list, creating new types such as list[image] or list[text]. These list types allow you to work with collections of data. When working with lists, keep in mind:- You can only connect a list port to a compatible list port.
- Consider using loop mode with nodes that dont handle lists by default.
- Intermediate nodes may help you match the types of two ports that are not directly compatible.