Class: Flatbed::StillClip

Inherits:
Clip
  • Object
show all
Defined in:
lib/flatbed/still_clip.rb

Instance Attribute Summary

Attributes inherited from Clip

#clip, #clip_name, #source, #source_name

Instance Method Summary collapse

Methods inherited from Clip

#command, #create, #destroy, #exists?, #input_options, #input_options=, #options, #output_options, #output_options=, #set_clip, #set_source, #source_exists?

Constructor Details

#initialize(clip, convert_from = nil) ⇒ StillClip

Returns a new instance of StillClip.



6
7
8
9
10
11
12
# File 'lib/flatbed/still_clip.rb', line 6

def initialize(clip, convert_from = nil)
  super(clip, convert_from)
  self.input_options = {
    :loop_input => true,
    :vframes => 250
  }
end