Class: WahWah::RiffTag
- Extended by:
- TagDelegate
- Defined in:
- lib/wahwah/riff_tag.rb
Constant Summary collapse
- INFO_ID_MAPPING =
see exiftool.org/TagNames/RIFF.html#Info for more info
{ INAM: :title, TITL: :title, IART: :artist, IPRD: :album, ICMT: :comment, ICRD: :year, YEAR: :year, IGNR: :genre, TRCK: :track }
- CHANNEL_MODE_INDEX =
%w[Mono Stereo]
Constants inherited from Tag
Tag::INSPECT_ATTRIBUTES, Tag::INTEGER_ATTRIBUTES
Instance Method Summary collapse
Methods included from TagDelegate
Methods inherited from Tag
#images, #initialize, #inspect
Constructor Details
This class inherits a constructor from WahWah::Tag
Instance Method Details
#channel_mode ⇒ Object
37 38 39 |
# File 'lib/wahwah/riff_tag.rb', line 37 def channel_mode CHANNEL_MODE_INDEX[@channel - 1] end |