Package edu.harvard.hul.ois.jhove
Interface AESAudioMetadata.Face
-
- Enclosing class:
- AESAudioMetadata
public static interface AESAudioMetadata.FacePublic interface to the nested Face 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 voidaddFaceRegion()Adds a FaceRegion.StringgetDirection()Returns the direction.AESAudioMetadata.TimeDescgetDuration()Returns the duration.AESAudioMetadata.FaceRegiongetFaceRegion(int i)Returns an indexed FaceRegion.AESAudioMetadata.TimeDescgetStartTime()Returns the starting time.voidsetDirection(String direction)Sets the direction.voidsetDuration(long samples)Sets the duration.voidsetStartTime(long samples)Sets the starting time.
-
-
-
Method Detail
-
getFaceRegion
AESAudioMetadata.FaceRegion getFaceRegion(int i)
Returns an indexed FaceRegion.
-
addFaceRegion
void addFaceRegion()
Adds a FaceRegion. This may be called repeatedly to add multiple FaceRegions.
-
getStartTime
AESAudioMetadata.TimeDesc getStartTime()
Returns the starting time.
-
getDuration
AESAudioMetadata.TimeDesc getDuration()
Returns the duration.
-
getDirection
String getDirection()
Returns the direction.
-
setStartTime
void setStartTime(long samples)
Sets the starting time. This will be converted into a TimeDesc.
-
setDuration
void setDuration(long samples)
Sets the duration. This will be converted into a TimeDesc.
-
setDirection
void setDirection(String direction)
Sets the direction. This must be one of the directionTypes. FORWARD is recommended for most or all cases.
-
-