Module: VideoConverter

Defined in:
lib/video_converter.rb,
lib/video_converter/base.rb,
lib/video_converter/input.rb,
lib/video_converter/ffmpeg.rb,
lib/video_converter/output.rb,
lib/video_converter/command.rb,
lib/video_converter/mp4frag.rb,
lib/video_converter/openssl.rb,
lib/video_converter/version.rb,
lib/video_converter/faststart.rb,
lib/video_converter/f4fpackager.rb,
lib/video_converter/live_segmenter.rb

Defined Under Namespace

Classes: Base, Command, F4fpackager, Faststart, Ffmpeg, Input, LiveSegmenter, Mp4frag, OpenSSL, Output

Constant Summary collapse

VERSION =
"0.8.2"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.logObject

Returns the value of attribute log.



22
23
24
# File 'lib/video_converter.rb', line 22

def log
  @log
end

.paralObject

Returns the value of attribute paral.



22
23
24
# File 'lib/video_converter.rb', line 22

def paral
  @paral
end

Class Method Details

.new(params) ⇒ Object



29
30
31
# File 'lib/video_converter.rb', line 29

def self.new params
  VideoConverter::Base.new params.deep_symbolize_keys.deep_shellescape_values
end