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.9.1"

Class Attribute Summary collapse

Class Method Summary collapse

Class Attribute Details

.logObject

Returns the value of attribute log.



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

def log
  @log
end

.paralObject

Returns the value of attribute paral.



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

def paral
  @paral
end

Class Method Details

.new(params) ⇒ Object



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

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