public interface RecorderParams
Modifier and Type | Method and Description |
---|---|
RecorderParams |
clone()
Clone a
RecorderParams object. |
AudioDevice |
getAudioDevice()
Retrieve the
AudioDevice object. |
RecorderFileFormat |
getFileFormat()
Retrieves the
RecorderFileFormat . |
long |
getNativePointer()
Gets the native pointer used by this class to make native method calls.
|
java.lang.Object |
getUserData()
Gets the object stored in this object user's data
|
java.lang.String |
getVideoCodec()
Retrieves the video codec.
|
java.lang.String |
getWebcamName()
Retrieves the webcam name.
|
java.lang.Object |
getWindowId()
Retrieves the window id.
|
void |
setAudioDevice(AudioDevice device)
Set the
AudioDevice object. |
void |
setFileFormat(RecorderFileFormat format)
Set the
RecorderFileFormat . |
void |
setUserData(java.lang.Object data)
Sets the object to store in this object user's data
|
void |
setVideoCodec(java.lang.String videoCodec)
Set the video codec.
|
void |
setWebcamName(java.lang.String webcamName)
Set the webcam name.
|
void |
setWindowId(java.lang.Object windowId)
Set the window id.
|
java.lang.String |
toString() |
@Nullable AudioDevice getAudioDevice()
AudioDevice
object. void setAudioDevice(@Nullable AudioDevice device)
device
- The AudioDevice
object to set. RecorderFileFormat getFileFormat()
RecorderFileFormat
. void setFileFormat(RecorderFileFormat format)
format
- The RecorderFileFormat
to set. @Nullable java.lang.String getVideoCodec()
void setVideoCodec(@Nullable java.lang.String videoCodec)
videoCodec
- The video codec to set. @Nullable java.lang.String getWebcamName()
void setWebcamName(@Nullable java.lang.String webcamName)
webcamName
- The webcam name to set. @Nullable java.lang.Object getWindowId()
void setWindowId(@Nullable java.lang.Object windowId)
windowId
- The window id to set. @NonNull RecorderParams clone()
RecorderParams
object. void setUserData(java.lang.Object data)
data
- the object to storejava.lang.Object getUserData()
long getNativePointer()
java.lang.String toString()
toString
in class java.lang.Object