Package org.ffmpeg.ffprobe
Class ProgramType
- java.lang.Object
-
- org.ffmpeg.ffprobe.ProgramType
-
public class ProgramType extends Object
Java class for programType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="programType"> <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"/> <element name="streams" type="{http://www.ffmpeg.org/schema/ffprobe}streamsType" minOccurs="0"/> </sequence> <attribute name="program_id" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="program_num" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="nb_streams" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="start_time" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="start_pts" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="end_time" type="{http://www.w3.org/2001/XMLSchema}float" /> <attribute name="end_pts" type="{http://www.w3.org/2001/XMLSchema}long" /> <attribute name="pmt_pid" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> <attribute name="pcr_pid" use="required" type="{http://www.w3.org/2001/XMLSchema}int" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected LongendPtsprotected FloatendTimeprotected intnbStreamsprotected intpcrPidprotected intpmtPidprotected intprogramIdprotected intprogramNumprotected LongstartPtsprotected FloatstartTimeprotected StreamsTypestreamsprotected List<TagType>tag
-
Constructor Summary
Constructors Constructor Description ProgramType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LonggetEndPts()Gets the value of the endPts property.FloatgetEndTime()Gets the value of the endTime property.intgetNbStreams()Gets the value of the nbStreams property.intgetPcrPid()Gets the value of the pcrPid property.intgetPmtPid()Gets the value of the pmtPid property.intgetProgramId()Gets the value of the programId property.intgetProgramNum()Gets the value of the programNum property.LonggetStartPts()Gets the value of the startPts property.FloatgetStartTime()Gets the value of the startTime property.StreamsTypegetStreams()Gets the value of the streams property.List<TagType>getTag()Gets the value of the tag property.voidsetEndPts(Long value)Sets the value of the endPts property.voidsetEndTime(Float value)Sets the value of the endTime property.voidsetNbStreams(int value)Sets the value of the nbStreams property.voidsetPcrPid(int value)Sets the value of the pcrPid property.voidsetPmtPid(int value)Sets the value of the pmtPid property.voidsetProgramId(int value)Sets the value of the programId property.voidsetProgramNum(int value)Sets the value of the programNum property.voidsetStartPts(Long value)Sets the value of the startPts property.voidsetStartTime(Float value)Sets the value of the startTime property.voidsetStreams(StreamsType value)Sets the value of the streams property.
-
-
-
Field Detail
-
streams
protected StreamsType streams
-
programId
protected int programId
-
programNum
protected int programNum
-
nbStreams
protected int nbStreams
-
startTime
protected Float startTime
-
startPts
protected Long startPts
-
endTime
protected Float endTime
-
endPts
protected Long endPts
-
pmtPid
protected int pmtPid
-
pcrPid
protected int pcrPid
-
-
Method Detail
-
getTag
public List<TagType> 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
-
getStreams
public StreamsType getStreams()
Gets the value of the streams property.- Returns:
- possible object is
StreamsType
-
setStreams
public void setStreams(StreamsType value)
Sets the value of the streams property.- Parameters:
value- allowed object isStreamsType
-
getProgramId
public int getProgramId()
Gets the value of the programId property.
-
setProgramId
public void setProgramId(int value)
Sets the value of the programId property.
-
getProgramNum
public int getProgramNum()
Gets the value of the programNum property.
-
setProgramNum
public void setProgramNum(int value)
Sets the value of the programNum property.
-
getNbStreams
public int getNbStreams()
Gets the value of the nbStreams property.
-
setNbStreams
public void setNbStreams(int value)
Sets the value of the nbStreams property.
-
getStartTime
public Float getStartTime()
Gets the value of the startTime property.- Returns:
- possible object is
Float
-
setStartTime
public void setStartTime(Float value)
Sets the value of the startTime property.- Parameters:
value- allowed object isFloat
-
getStartPts
public Long getStartPts()
Gets the value of the startPts property.- Returns:
- possible object is
Long
-
setStartPts
public void setStartPts(Long value)
Sets the value of the startPts property.- Parameters:
value- allowed object isLong
-
getEndTime
public Float getEndTime()
Gets the value of the endTime property.- Returns:
- possible object is
Float
-
setEndTime
public void setEndTime(Float value)
Sets the value of the endTime property.- Parameters:
value- allowed object isFloat
-
getEndPts
public Long getEndPts()
Gets the value of the endPts property.- Returns:
- possible object is
Long
-
setEndPts
public void setEndPts(Long value)
Sets the value of the endPts property.- Parameters:
value- allowed object isLong
-
getPmtPid
public int getPmtPid()
Gets the value of the pmtPid property.
-
setPmtPid
public void setPmtPid(int value)
Sets the value of the pmtPid property.
-
getPcrPid
public int getPcrPid()
Gets the value of the pcrPid property.
-
setPcrPid
public void setPcrPid(int value)
Sets the value of the pcrPid property.
-
-