Sha256: d5d02231a5622ff6d8ff004cc4a9746187b2ca83a7739212df05a6e790e584b9

Contents?: true

Size: 755 Bytes

Versions: 5

Compression:

Stored size: 755 Bytes

Contents

module FMOD
  module Core

    ##
    # List of tag types that could be stored within a sound. These include id3
    # tags, metadata from net-streams and vorbis/asf data.
    # @since 0.9.2
    module TagType

      ##
      # Unknown
      UNKNOWN = 0

      ##
      # ID3V1
      ID3V1 = 1

      ##
      # ID3V2
      ID3V2 = 2

      ##
      # Vorbis Comment
      VORBIS_COMMENT = 3

      ##
      # ShoutCast
      SHOUT_CAST = 4

      ##
      # IceCast
      ICE_CAST = 5

      ##
      # ASF
      ASF = 6

      ##
      # MIDI
      MIDI = 7

      ##
      # Play list
      PLAYLIST = 8

      ##
      # FMOD
      FMOD = 9

      ##
      # User
      USER = 10
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
fmod-0.9.6 lib/fmod/core/tag_type.rb
fmod-0.9.5 lib/fmod/core/tag_type.rb
fmod-0.9.4 lib/fmod/core/tag_type.rb
fmod-0.9.3 lib/fmod/core/tag_type.rb
fmod-0.9.2 lib/fmod/core/tag_type.rb