class MultimediaParadise::ToOgg
Public Class Methods
Public Instance Methods
cleanup_old_files()
click to toggle source
input?()
click to toggle source
output_file?()
click to toggle source
report_that_we_are_done_now()
click to toggle source
reset()
click to toggle source
return_input_name()
click to toggle source
run()
click to toggle source
#¶ ↑
run (run tag)¶ ↑
#¶ ↑
# File lib/multimedia_paradise/audio/to_ogg.rb, line 88 def run cleanup_old_files _ = 'ffmpeg'.dup _ << ' -i '+input? _ << ' -strict -2' # So that ffmpeg does not complain about vorbis being experimental. _ << ' -acodec libvorbis' _ << ' -aq 100 ' _ << output_file? esystem _ report_that_we_are_done_now end