mirror of https://github.com/OpenVidu/openvidu.git
openvidu-java-client: JavaDoc update
parent
d884555cbd
commit
5c4441e592
|
@ -165,7 +165,9 @@ public class KurentoOptions {
|
|||
|
||||
/**
|
||||
* Defines the names of the filters the user owning the token will be able to
|
||||
* apply. See <a href="https://openvidu.io/docs/advanced-features/filters/" target="_blank">Voice and video filters</a>
|
||||
* apply. See
|
||||
* <a href="https://openvidu.io/docs/advanced-features/filters/" target=
|
||||
* "_blank">Voice and video filters</a>
|
||||
*/
|
||||
public String[] getAllowedFilters() {
|
||||
return allowedFilters;
|
||||
|
|
|
@ -123,7 +123,8 @@ public class RecordingProperties {
|
|||
}
|
||||
|
||||
/**
|
||||
* Call this method to specify whether to record audio or not. Cannot be set to false at the same time as {@link hasVideo(boolean)}
|
||||
* Call this method to specify whether to record audio or not. Cannot be set to
|
||||
* false at the same time as {@link hasVideo(boolean)}
|
||||
*/
|
||||
public RecordingProperties.Builder hasAudio(boolean hasAudio) {
|
||||
this.hasAudio = hasAudio;
|
||||
|
@ -131,7 +132,8 @@ public class RecordingProperties {
|
|||
}
|
||||
|
||||
/**
|
||||
* Call this method to specify whether to record video or not. Cannot be set to false at the same time as {@link hasAudio(boolean)}
|
||||
* Call this method to specify whether to record video or not. Cannot be set to
|
||||
* false at the same time as {@link hasAudio(boolean)}
|
||||
*/
|
||||
public RecordingProperties.Builder hasVideo(boolean hasVideo) {
|
||||
this.hasVideo = hasVideo;
|
||||
|
@ -163,7 +165,9 @@ public class RecordingProperties {
|
|||
/**
|
||||
* Defines the mode of recording: {@link Recording.OutputMode#COMPOSED} for a
|
||||
* single archive in a grid layout or {@link Recording.OutputMode#INDIVIDUAL}
|
||||
* for one archive for each stream
|
||||
* for one archive for each stream.<br><br>
|
||||
*
|
||||
* Default to {@link Recording.OutputMode#COMPOSED}
|
||||
*/
|
||||
public Recording.OutputMode outputMode() {
|
||||
return this.outputMode;
|
||||
|
@ -174,7 +178,9 @@ public class RecordingProperties {
|
|||
* Will only have effect if
|
||||
* {@link io.openvidu.java.client.RecordingProperties.Builder#outputMode(Recording.OutputMode)}
|
||||
* has been called with value
|
||||
* {@link io.openvidu.java.client.Recording.OutputMode#COMPOSED}
|
||||
* {@link Recording.OutputMode#COMPOSED}.<br><br>
|
||||
*
|
||||
* Default to {@link RecordingLayout#BEST_FIT}
|
||||
*/
|
||||
public RecordingLayout recordingLayout() {
|
||||
return this.recordingLayout;
|
||||
|
@ -200,21 +206,29 @@ public class RecordingProperties {
|
|||
* {@link io.openvidu.java.client.Recording.OutputMode#COMPOSED}. For
|
||||
* {@link io.openvidu.java.client.Recording.OutputMode#INDIVIDUAL} all
|
||||
* individual video files will have the native resolution of the published
|
||||
* stream
|
||||
* stream.<br><br>
|
||||
*
|
||||
* Default to "1920x1080"
|
||||
*/
|
||||
public String resolution() {
|
||||
return this.resolution;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines whether to record audio or not. Cannot be set to false at the same time as {@link hasVideo()}
|
||||
* Defines whether to record audio or not. Cannot be set to false at the same
|
||||
* time as {@link hasVideo()}.<br><br>
|
||||
*
|
||||
* Default to true
|
||||
*/
|
||||
public boolean hasAudio() {
|
||||
return this.hasAudio;
|
||||
}
|
||||
|
||||
/**
|
||||
* Defines whether to record video or not. Cannot be set to false at the same time as {@link hasAudio()}
|
||||
* Defines whether to record video or not. Cannot be set to false at the same
|
||||
* time as {@link hasAudio()}.<br><br>
|
||||
*
|
||||
* Default to true
|
||||
*/
|
||||
public boolean hasVideo() {
|
||||
return this.hasVideo;
|
||||
|
|
|
@ -112,7 +112,8 @@ public class SessionProperties {
|
|||
* recording of this session. You can easily override this value later when
|
||||
* starting a {@link io.openvidu.java.client.Recording} by calling
|
||||
* {@link io.openvidu.java.client.RecordingProperties.Builder#customLayout(String)}
|
||||
* with any other value.<br><br>
|
||||
* with any other value.<br>
|
||||
* <br>
|
||||
*
|
||||
* Custom layouts are only applicable to recordings with OutputMode
|
||||
* {@link io.openvidu.java.client.Recording.OutputMode#COMPOSED} and
|
||||
|
|
Loading…
Reference in New Issue