Class Output
- java.lang.Object
-
- nl.harm27.obswebsocket.api.complex.Output
-
public class Output extends Object
- See Also:
- OBS WebSocket Documentation
-
-
Constructor Summary
Constructors Constructor Description Output()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description double
getCongestion()
Output congestion.int
getDroppedFrames()
Number of frames dropped.Object
getFlags()
Output flags.int
getFlagsRawValue()
Raw flags value.int
getHeight()
Video output height.String
getName()
Output name.Object
getSettings()
int
getTotalBytes()
Total bytes sent.int
getTotalFrames()
Number of frames sent.String
getType()
Output type/kind.int
getWidth()
Video output width.boolean
isActive()
Output status (active or not).boolean
isFlagsAudio()
Output uses audio.boolean
isFlagsEncoded()
Output is encoded.boolean
isFlagsMultiTrack()
Output uses several audio tracks.boolean
isFlagsService()
Output uses a service.boolean
isFlagsVideo()
Output uses video.boolean
isReconnecting()
Output reconnection status (reconnecting or not).
-
-
-
Method Detail
-
getName
public String getName()
Output name.
-
getType
public String getType()
Output type/kind.
-
getWidth
public int getWidth()
Video output width.
-
getHeight
public int getHeight()
Video output height.
-
getFlags
public Object getFlags()
Output flags.
-
getFlagsRawValue
public int getFlagsRawValue()
Raw flags value.
-
isFlagsAudio
public boolean isFlagsAudio()
Output uses audio.
-
isFlagsVideo
public boolean isFlagsVideo()
Output uses video.
-
isFlagsEncoded
public boolean isFlagsEncoded()
Output is encoded.
-
isFlagsMultiTrack
public boolean isFlagsMultiTrack()
Output uses several audio tracks.
-
isFlagsService
public boolean isFlagsService()
Output uses a service.
-
getSettings
public Object getSettings()
-
isActive
public boolean isActive()
Output status (active or not).
-
isReconnecting
public boolean isReconnecting()
Output reconnection status (reconnecting or not).
-
getCongestion
public double getCongestion()
Output congestion.
-
getTotalFrames
public int getTotalFrames()
Number of frames sent.
-
getDroppedFrames
public int getDroppedFrames()
Number of frames dropped.
-
getTotalBytes
public int getTotalBytes()
Total bytes sent.
-
-