Difference between revisions of "UM:Cli Cli Count And Add"

From DigitalVision
Jump to: navigation, search
m (Upload page Cli_Cli_Count_And_Add)
 
m (Text replacement - "|Platform:" to "|UM:")
 
Line 1: Line 1:
 
<div class="manualcontent">
 
<div class="manualcontent">
  
{{Template:M-Navlinks-top|Platform:Manual|Platform:Cli_Cli_Removing_Items|Platform:Cli_Cli_Lock}}
+
{{Template:M-Navlinks-top|UM:Manual|UM:Cli_Cli_Removing_Items|UM:Cli_Cli_Lock}}
  
 
{{Template:M-Title|Counting and Adding Tracks}}
 
{{Template:M-Title|Counting and Adding Tracks}}
Line 80: Line 80:
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
 
<p class="p_DVBodyText"><span class="f_DVBodyText"> </span></p>
  
{{Template:M-Navlinks-bottom|Platform:Manual|Platform:Cli_Cli_Removing_Items|Platform:Cli_Cli_Lock}}
+
{{Template:M-Navlinks-bottom|UM:Manual|UM:Cli_Cli_Removing_Items|UM:Cli_Cli_Lock}}
  
 
</div>
 
</div>

Latest revision as of 12:06, 15 October 2014

Darrow-up.png     Previous Next

Counting and Adding Tracks

--count-tracks <video|audio>

Count how many tracks of specified type are in composition

--add-track <video|audio>

Add a new track of specified type to existing composition

Count Tracks

--count-tracks <video|audio>

 

This command will count how many tracks of the type specified exist in the named composition.

 

Command :

$ film_master --project PROJ1 --composition COMP1 \

  --count-tracks video

INFO Opening project "ttt".

INFO Opening composition "COMP1".

INFO Total video tracks : 3

 

Command :

$ film_master --project PROJ1 --composition COMP1 \

  --count-tracks audio

INFO Opening project "ttt".

INFO Opening composition "COMP1".

INFO Total audio tracks : 2

Add a Track

--add-track <video|audio>

 

This command will add a track of the type specified to the named composition. The number of the new track added is returned.

 

Command :

$ film_master --project PROJ1 --composition COMP1 \

  --add-track video

INFO Opening project "ttt".

INFO Opening composition "COMP1".

INFO New video track added number : 4

 

We will now have a new track "V4" in the composition "COMP1" above.

 

Darrow-up.png     Previous Next