Package edu.harvard.hul.ois.jhove
Interface AESAudioMetadata.FaceRegion
-
- Enclosing class:
- AESAudioMetadata
public static interface AESAudioMetadata.FaceRegionPublic interface to the nested FaceRegion object. Instances of this should be created only by appropriate methods, but can be accessed through the public methods of this interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AESAudioMetadata.TimeDescgetDuration()Returns the duration.String[]getMapLocations()Returns the channel map locations.AESAudioMetadata.TimeDescgetStartTime()Returns the starting time.voidsetDuration(long samples)Sets the duration.voidsetMapLocations(String[] locations)Sets the channel map locations.voidsetStartTime(long samples)Sets the starting time.
-
-
-
Method Detail
-
getStartTime
AESAudioMetadata.TimeDesc getStartTime()
Returns the starting time.
-
getDuration
AESAudioMetadata.TimeDesc getDuration()
Returns the duration.
-
getMapLocations
String[] getMapLocations()
Returns the channel map locations. The array length must equal the number of channels.
-
setStartTime
void setStartTime(long samples)
Sets the starting time.
-
setDuration
void setDuration(long samples)
Sets the duration.
-
setMapLocations
void setMapLocations(String[] locations)
Sets the channel map locations. The array length must equal the number of channels.
-
-