ruby-ogginfo 0.3.1 → 0.3.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/Manifest.txt +1 -0
- data/lib/ogginfo.rb +3 -1
- data/setup.rb +1596 -0
- metadata +6 -4
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/lib/ogginfo.rb
CHANGED
@@ -2,6 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# see http://www.xiph.org/ogg/vorbis/docs.html for documentation on vorbis format
|
4
4
|
# http://www.xiph.org/ogg/vorbis/doc/v-comment.html
|
5
|
+
#
|
6
|
+
# License: ruby
|
5
7
|
|
6
8
|
require "iconv"
|
7
9
|
|
@@ -22,7 +24,7 @@ end
|
|
22
24
|
class OggInfoError < StandardError ; end
|
23
25
|
|
24
26
|
class OggInfo
|
25
|
-
VERSION = "0.3.
|
27
|
+
VERSION = "0.3.2"
|
26
28
|
attr_reader :channels, :samplerate, :bitrate, :nominal_bitrate, :length
|
27
29
|
|
28
30
|
# +tag+ is a hash containing the vorbis tag like "Artist", "Title", and the like
|