Skip to content

Instantly share code, notes, and snippets.

@frankyston
Forked from ideaoforder/mp32ogg.rb
Created October 24, 2015 15:45
Show Gist options
  • Save frankyston/d08847f06e99e2396a70 to your computer and use it in GitHub Desktop.
Save frankyston/d08847f06e99e2396a70 to your computer and use it in GitHub Desktop.
Ruby script to convert dir of mp3s to oggs
#!/usr/bin/env ruby
require 'rubygems'
@dir = ARGV[0]
@i = 0
Dir.glob("#{@dir}/*.mp3").each do |mp3|
ogg = mp3.gsub('mp3', 'ogg')
system "ffmpeg -i \"#{mp3}\" -acodec libvorbis -ac 2 \"#{ogg}\""
@i += 1
end
puts "Converted #{@i} mp3s to ogg format!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment