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/f4fpackager.rb,
lib/video_converter/live_segmenter.rb

Defined Under Namespace

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

Constant Summary collapse

VERSION =
"0.10.1"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.logObject

Returns the value of attribute log.



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

def log
  @log
end

.paralObject

Returns the value of attribute paral.



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

def paral
  @paral
end

Class Method Details

.new(params) ⇒ Object



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

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