We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue explains what 'timelines' represent in the application.
A timeline is a collection of Timeline items (#257) that, when rendered with Daguerreo (#33), can output an image.
Timelines manage inserting, removing, moving and other general tasks including Timeline items. Timelines also manage playback.
When creating a timeline, some basic options need to be defined:
export interface TimelineSettings { name: string; width: number; height: number; fps: number; }
A timeline inherits from Media (#245) using the following properties to extend the base metadata:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Timeline definition
This issue explains what 'timelines' represent in the application.
A timeline is a collection of Timeline items (#257) that, when rendered with Daguerreo (#33), can output an image.
Timelines manage inserting, removing, moving and other general tasks including Timeline items.
Timelines also manage playback.
When creating a timeline, some basic options need to be defined:
Storage
A timeline inherits from Media (#245) using the following properties to extend the base metadata:
The text was updated successfully, but these errors were encountered: