Difference between revisions of "UM:Cli Cli Project"

From DigitalVision
Jump to: navigation, search
m (Text replacement - "|Platform:" to "|UM:")
m (Text replacement - "Platform:" to "UM:")
 
Line 24: Line 24:
 
<p class="p_CmdLine" style="margin: 0px 0px 0px 0px;"><span class="f_CmdLine">--format-spec &lt;path&gt;</span></p>
 
<p class="p_CmdLine" style="margin: 0px 0px 0px 0px;"><span class="f_CmdLine">--format-spec &lt;path&gt;</span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
<p class="p_DVBodyText"><span class="f_DVBodyText">To create a new project from the command line, create a </span><span class="f_Keywords">project format specification </span><span class="f_DVBodyText">file that describes the project. This is the equivalent of setting up the [[Platform:Projects_Project_Format_Attributes|project configuration settings]] in the GUI.</span></p>
+
<p class="p_DVBodyText"><span class="f_DVBodyText">To create a new project from the command line, create a </span><span class="f_Keywords">project format specification </span><span class="f_DVBodyText">file that describes the project. This is the equivalent of setting up the [[UM:Projects_Project_Format_Attributes|project configuration settings]] in the GUI.</span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText">Specify the </span><span class="f_DVBodyText" style="font-style: italic;">name</span><span class="f_DVBodyText"> of the project and its </span><span class="f_DVBodyText" style="font-style: italic;">format specification file</span><span class="f_DVBodyText"> using the command:</span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText">Specify the </span><span class="f_DVBodyText" style="font-style: italic;">name</span><span class="f_DVBodyText"> of the project and its </span><span class="f_DVBodyText" style="font-style: italic;">format specification file</span><span class="f_DVBodyText"> using the command:</span></p>
Line 76: Line 76:
 
</div>
 
</div>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
<p class="p_DVBodyText"><span class="f_DVBodyText">See : </span><span class="f_Paragraph">[[Platform:Cli_Cli_Format_Spec_Definition|Format Specification definition section]]</span></p>
+
<p class="p_DVBodyText"><span class="f_DVBodyText">See : </span><span class="f_Paragraph">[[UM:Cli_Cli_Format_Spec_Definition|Format Specification definition section]]</span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText">A minimal format specification file would look like:</span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText">A minimal format specification file would look like:</span></p>
Line 105: Line 105:
 
</div>
 
</div>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
<p class="p_DVBodyText"><span class="f_Paragraph">See the next [[Platform:Cli_Cli_Format_Spec_Definition|section]] f</span><span class="f_DVBodyText">o</span><span class="f_Paragraph">r the complete file format definition.</span></p>
+
<p class="p_DVBodyText"><span class="f_Paragraph">See the next [[UM:Cli_Cli_Format_Spec_Definition|section]] f</span><span class="f_DVBodyText">o</span><span class="f_Paragraph">r the complete file format definition.</span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<div style="text-align: left; text-indent: 0px; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;"><table border="1" cellpadding="0" cellspacing="10" style="border: solid 1px #ff9900; border-spacing:10px;">
 
<div style="text-align: left; text-indent: 0px; padding: 0px 0px 0px 0px; margin: 0px 0px 0px 0px;"><table border="1" cellpadding="0" cellspacing="10" style="border: solid 1px #ff9900; border-spacing:10px;">

Latest revision as of 12:10, 15 October 2014

Darrow-up.png     Previous Next

Creating a Project

--project <name>

Create a new project with the specified name

--format-spec <path>

Use the specified project format specification template

Create a New Project

--project <name>

--format-spec <path>

 

To create a new project from the command line, create a project format specification file that describes the project. This is the equivalent of setting up the project configuration settings in the GUI.

 

Specify the name of the project and its format specification file using the command:

 

Command :

$ film_master --project PROJ1 --format-spec H:\specs\hd-1.txt

INFO Creating new project "PROJ1".

 

The above command creates a new project "PROJ1" using the definition stored in the file "hd-1.txt".

Project Format Specification

--format-spec <path>

 

This "format spec" is a text file that defines the elements of the project, including both outputs and sources. The output and source sections are specified using the section tags:

 

[output]
[source]

 

The basic format is as follows :

 

<Global Parameters>

[output]

<output sections>

[source]

<source sections>

 

dv_note

Some global parameters are required

There must be one or more output sections.

The first output section will be the master format for the project.

There are zero or more source sections (a "1:1 source" will always be created).

The '#' symbol starts a comment

 

See : Format Specification definition section

 

A minimal format specification file would look like:

 

# A minimum basic format specification

colourScaling=cgr

 

[output]

width=1920

height=1080

fps=25

aspectRatio=16/9

 

dv_note

A "#" symbol starts a comment.

 

See the next section for the complete file format definition.

 

dv_note

Example format specification files can be found in the folder :

 

C:\Nucoda\2014_1example_files\format_specs\

Darrow-up.png     Previous Next