| Path: | README.txt |
| Last Update: | Sat Mar 15 02:06:38 +0100 2008 |
ruby-ogginfo gives you access to low level information on ogg files (bitrate, length, samplerate, encoder, etc… ), as well as tag. It is written in pure ruby.
require "ogginfo"
OggInfo.open("toto.ogg") do |ogg|
puts ogg.bitrate
puts ogg.artist
puts ogg
end
sudo gem install ruby-ogginfo
Ruby