1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
= ruby-ogginfo
http://ruby-ogginfo.rubyforge.org/
https://github.com/moumar/ruby-ogginfo
== DESCRIPTION:
ruby-ogginfo gives you access to low level information on ogg files
(bitrate, length, samplerate, encoder, etc... ), as well as tag.
Supported codecs are: vorbis, speex and opus.
It is written in pure ruby.
== FEATURES/PROBLEMS
* writing tags is now pure ruby
== SYNOPSIS:
require "ogginfo"
OggInfo.open("toto.ogg") do |ogg|
puts ogg.bitrate
puts ogg.artist
puts ogg
end
== INSTALL:
sudo gem install ruby-ogginfo
== TODO:
* writing tags in pure-ruby
== LICENSE:
GPL v3
|