FileDocCategorySizeDatePackage
TrackMetaData.javaAPI Docmp4parser 1.0-RC-172948Wed Dec 19 20:10:37 GMT 2012com.googlecode.mp4parser.authoring

TrackMetaData

public class TrackMetaData extends Object implements Cloneable

Fields Summary
private String
language
private long
timescale
private Date
modificationTime
private Date
creationTime
private double
width
private double
height
private float
volume
private long
trackId
private int
group
int
layer
specifies the front-to-back ordering of video tracks; tracks with lower numbers are closer to the viewer. 0 is the normal value, and -1 would be in front of track 0, and so on.
Constructors Summary
Methods Summary
public java.lang.Objectclone()

        try {
            return super.clone();
        } catch (CloneNotSupportedException e) {
            return null;
        }
    
public java.util.DategetCreationTime()

        return creationTime;
    
public intgetGroup()

        return group;
    
public doublegetHeight()

        return height;
    
public java.lang.StringgetLanguage()


       
        return language;
    
public intgetLayer()

        return layer;
    
public java.util.DategetModificationTime()

        return modificationTime;
    
public longgetTimescale()

        return timescale;
    
public longgetTrackId()

        return trackId;
    
public floatgetVolume()

        return volume;
    
public doublegetWidth()

        return width;
    
public voidsetCreationTime(java.util.Date creationTime)

        this.creationTime = creationTime;
    
public voidsetGroup(int group)

        this.group = group;
    
public voidsetHeight(double height)

        this.height = height;
    
public voidsetLanguage(java.lang.String language)

        this.language = language;
    
public voidsetLayer(int layer)

        this.layer = layer;
    
public voidsetModificationTime(java.util.Date modificationTime)

        this.modificationTime = modificationTime;
    
public voidsetTimescale(long timescale)

        this.timescale = timescale;
    
public voidsetTrackId(long trackId)

        this.trackId = trackId;
    
public voidsetVolume(float volume)

        this.volume = volume;
    
public voidsetWidth(double width)

        this.width = width;