Difference between revisions of "UM:Cli Cli Generate Proxies"

From DigitalVision
Jump to: navigation, search
m (Upload page Cli_Cli_Generate_Proxies)
 
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_Capture_Conform|Platform:Cli_Cli_Export}}
+
{{Template:M-Navlinks-top|UM:Manual|UM:Cli_Cli_Capture_Conform|UM:Cli_Cli_Export}}
  
 
{{Template:M-Title|Generating Local Proxies}}
 
{{Template:M-Title|Generating Local Proxies}}
Line 141: Line 141:
 
<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_Capture_Conform|Platform:Cli_Cli_Export}}
+
{{Template:M-Navlinks-bottom|UM:Manual|UM:Cli_Cli_Capture_Conform|UM:Cli_Cli_Export}}
  
 
</div>
 
</div>

Latest revision as of 12:08, 15 October 2014

Darrow-up.png     Previous Next

Generating Local Proxies

--generate-proxies

Generate proxies

--range <M> <N>

Specify a range of proxies to generate

Generating Proxies for a Composition

--generate-proxies

 

Generate all the proxies for specified composition :

 

Command :

$ film_master --project PROJ1 --composition COMP1 \

  --generate-proxies

INFO Opening project "PROJ1".

INFO Opening composition "COMP1".

INFO Generating proxies for composition...

INFO gen ... 0 frames of 98 (0%)

INFO gen ... 1 frames of 98 (1%)

INFO gen ... 2 frames of 98 (2%)

...

INFO gen ... 98 frames of 98 (100%)

Generating Proxies for a Clip

--clip-name N --generate-proxies

 

To generate proxies for a specific clip in a composition, give the clip name:

 

Command :

$ film_master --project PROJ1 --clip-name CLIP2 \

  --generate-proxies

INFO Opening project "PROJ1".

INFO Generating proxies for clip...

INFO Creating new composition "CLIP2".

INFO gen ... generated 0 frames of 15 (0%)

INFO gen ... generated 1 frames of 15 (6%)

INFO gen ... generated 2 frames of 15 (13%)

...

INFO gen ... generated 15 frames of 15 (100%)

Generating Proxies on a Range

--range A B

 

You can generate proxies for a range of frames using the --range option. This will work on a range of frames within a clip or on a range within a whole composition, depending on usage.

 

Within a clip:

 

Command :

$ film_master --project PROJ1 --clip-name CLIP1 \

  --range 10 20 --generate-proxies

INFO Opening project "PROJ1".

INFO Found clip. Origin is 1.

INFO Generating proxies for clip...

INFO Creating new composition "CLIP1".

INFO gen ... generated 0 frames of 10 (0%)

INFO gen ... generated 1 frames of 10 (10%)

...

INFO gen ... generated 10 frames of 10 (100%)

 

dv_note

If you only give a start frame for the range (e.g. --range 30), then the proxies will be generated from this frame (in the clip) to the end of the clip.

 

Within a composition:

 

Command :

$ film_master --project PROJ1 --composition COMP1 \

  --range 30 50 --generate-proxies

INFO Opening project "PROJ1".

INFO Opening composition "COMP1".

INFO Generating proxies for composition...

INFO gen ... generated 0 frames of 21 (0%)

INFO gen ... generated 1 frames of 21 (4%)

...

INFO gen ... generated 21 frames of 21 (100%)

 

dv_note

If you only give a start frame for the range (e.g. --range 60), then the proxies will be generated from this frame to the end of the composition.

 

Darrow-up.png     Previous Next