UM:Cli Cli Composition
--composition <name> |
Name and create a new composition |
--num-tracks <N> |
Create a composition with N video tracks |
Create a New Composition
--composition <name>
The following command creates a new composition named "COMP1" inside project "PROJ1".
Command : |
$ film_master --project PROJ1 --composition COMP1 INFO Opening project "PROJ1". INFO Creating new composition "COMP1". |
If the project does not exist, it will be created. This will require a format specification option.
Create a New Project and New Composition
The following command creates a new project "PROJ2" according to the format specification file "FORMAT". It will then create a new composition named "COMP2" inside the newly created project.
Command : |
$ film_master --project PROJ2 --format-spec FORMAT \ --composition COMP2 INFO Creating new project "PROJ2". INFO Creating new composition "COMP2". |
Create a New Composition with Multiple Video Tracks
--num-tracks <N>
The following command creates a new composition "COMP3" containing 3 video tracks (V1,V2 and V3) inside project "PROJ1".
Command : |
$ film_master --project PROJ1 --composition COMP3 \ --num-tracks 3 INFO Opening project "PROJ1". INFO Creating new composition "COMP3". |
Video tracks can be selected using the --track ID option on the command line, where ID is "V1", "V2" etc. |