Package org.ffmpeg.ffprobe
Class ChapterType
java.lang.Object
org.ffmpeg.ffprobe.ChapterType
Java class for chapterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="chapterType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="tag" type="{http://www.ffmpeg.org/schema/ffprobe}tagType" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="time_base" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="start" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}float" />
<attribute name="end" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="end_time" use="required" type="{http://www.w3.org/2001/XMLSchema}float" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionintgetEnd()Gets the value of the end property.floatGets the value of the endTime property.intgetId()Gets the value of the id property.intgetStart()Gets the value of the start property.Gets the value of the startTime property.getTag()Gets the value of the tag property.Gets the value of the timeBase property.voidsetEnd(int value) Sets the value of the end property.voidsetEndTime(float value) Sets the value of the endTime property.voidsetId(int value) Sets the value of the id property.voidsetStart(int value) Sets the value of the start property.voidsetStartTime(Float value) Sets the value of the startTime property.voidsetTimeBase(String value) Sets the value of the timeBase property.
-
Field Details
-
tag
-
id
protected int id -
timeBase
-
start
protected int start -
startTime
-
end
protected int end -
endTime
protected float endTime
-
-
Constructor Details
-
ChapterType
public ChapterType()
-
-
Method Details
-
getTag
Gets the value of the tag property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a
setmethod for the tag property.For example, to add a new item, do as follows:
getTag().add(newItem);Objects of the following type(s) are allowed in the list
TagType -
getId
public int getId()Gets the value of the id property. -
setId
public void setId(int value) Sets the value of the id property. -
getTimeBase
Gets the value of the timeBase property.- Returns:
- possible object is
String
-
setTimeBase
Sets the value of the timeBase property.- Parameters:
value- allowed object isString
-
getStart
public int getStart()Gets the value of the start property. -
setStart
public void setStart(int value) Sets the value of the start property. -
getStartTime
Gets the value of the startTime property.- Returns:
- possible object is
Float
-
setStartTime
Sets the value of the startTime property.- Parameters:
value- allowed object isFloat
-
getEnd
public int getEnd()Gets the value of the end property. -
setEnd
public void setEnd(int value) Sets the value of the end property. -
getEndTime
public float getEndTime()Gets the value of the endTime property. -
setEndTime
public void setEndTime(float value) Sets the value of the endTime property.
-