module FFmpeg

Constants

VERSION

Attributes

ffmpeg_bin[RW]
ffprobe_bin[RW]
timeout[RW]

Public Class Methods

command(command) { |stdin, stdout, stderr, wait_thr| ... } click to toggle source
# File lib/rmedia.rb, line 9
def self.command(command)
  Open3.popen3(*command) do |stdin, stdout, stderr, wait_thr|
    yield(stdin, stdout, stderr, wait_thr) if block_given?
  end
end