class Hash

Public Instance Methods

to_shellflags() click to toggle source
# File lib/ffmpeg_wrapper/hash.rb, line 2
def to_shellflags
  line = ''
  each do |k, v|
    line << "-#{k} #{v}"
  end
  line
end