Create Timeline:
The MontagenCreateTimeline node is designed to facilitate the creation of new timelines within a Montagen project. This node is essential for managing and organizing different sequences or scenes in a project, allowing you to define the structure and parameters of a timeline. By creating a timeline, you can specify its dimensions, frame rate, and other metadata, which are crucial for maintaining consistency and organization in your project. The node ensures that each timeline is unique and not duplicated, preventing conflicts and maintaining the integrity of your project. This functionality is particularly beneficial for AI artists who need to manage complex projects with multiple timelines, as it provides a streamlined and efficient way to handle timeline creation and management.
Create Timeline Input Parameters:
timeline_name
The timeline_name parameter is a string that specifies the name of the timeline you wish to create. It is crucial as it uniquely identifies the timeline within the project. The name must be unique and not already in use within the project, as duplicate names will result in an error. There are no specific minimum or maximum length restrictions provided, but it should be a valid string that clearly identifies the timeline's purpose or content.
project
The project parameter refers to the Montagen project within which the timeline is to be created. This parameter is essential as it provides the context and environment for the timeline, including its path, dimensions, and other project-specific settings. The project must be valid and existing, as the timeline will be integrated into its structure.
Create Timeline Output Parameters:
MontagenTimeline
The output of the MontagenCreateTimeline node is a MontagenTimeline object. This object represents the newly created timeline and contains all the relevant data and metadata, such as its name, dimensions, frame rate, and unique identifiers. The MontagenTimeline object is crucial for further manipulation and management of the timeline within the project, allowing you to add clips, modify settings, and integrate it into workflows.
Create Timeline Usage Tips:
- Ensure that the
timeline_nameis unique within the project to avoid conflicts and errors during creation. - Use descriptive and meaningful names for timelines to easily identify their purpose or content, especially in projects with multiple timelines.
- Verify that the
projectparameter is correctly set to the intended Montagen project to ensure the timeline is created in the correct context.
Create Timeline Common Errors and Solutions:
timeline_name cannot be None
- Explanation: This error occurs when the
timeline_nameparameter is not provided or is set toNone. - Solution: Ensure that you provide a valid string for the
timeline_nameparameter when creating a new timeline.
``<timeline_name> timeline already exists
- Explanation: This error indicates that a timeline with the specified name already exists within the project.
- Solution: Choose a different, unique name for the new timeline to avoid duplication.
project cannot be None
- Explanation: This error occurs when the
projectparameter is not provided or is set toNone. - Solution: Ensure that you provide a valid Montagen project object for the
projectparameter when creating a new timeline.
