class MovieMasher::GraphRaw

a video or image represented as a graph

Public Class Methods

new(input) click to toggle source

a video or image input

Calls superclass method MovieMasher::Graph::new
# File lib/graph.rb, line 302
def initialize(input)
  super(input, nil, input[:range])
  @layer = create_layer(input)
end

Public Instance Methods

graph_command(*) click to toggle source
Calls superclass method MovieMasher::Graph#graph_command
# File lib/graph.rb, line 294
def graph_command(*)
  super
  cmd = @layer.layer_command(graph_scope)
  cmd += @layer.trim_command(@render_range)
  cmd
end
inputs() click to toggle source
# File lib/graph.rb, line 307
def inputs
  @layer.inputs
end