com.tuneology.avm.media
Class AudioProperties

java.lang.Object
  |
  +--com.tuneology.avm.media.MediaProperties
        |
        +--com.tuneology.avm.media.AudioProperties

public class AudioProperties
extends MediaProperties

Represents information about an audio file.


Field Summary
 int channels
          The number of channels.
 int count
          The number of samples in the file.
 int encoding
          The encoding of the file, one of: NativePlayer.DATA_FORMAT_*
 int fileType
          The type of the file
 
Fields inherited from class com.tuneology.avm.media.MediaProperties
headerSize, rate, sampleSize
 
Constructor Summary
AudioProperties()
           
 
Method Summary
 MediaProperties copy()
          Returns a new copy.
static void touch()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

fileType

public int fileType
The type of the file

encoding

public int encoding
The encoding of the file, one of: NativePlayer.DATA_FORMAT_*

channels

public int channels
The number of channels.

count

public int count
The number of samples in the file.
Constructor Detail

AudioProperties

public AudioProperties()
Method Detail

copy

public MediaProperties copy()
Returns a new copy.
Overrides:
copy in class MediaProperties
Returns:
a new copy.

touch

public static void touch()