Recorder.Builder
class Recorder.Builder
Builder class for Recorder objects.
Summary
Public constructors |
|---|
Builder()Constructor for |
Public functions |
|
|---|---|
Recorder |
build()Builds the |
Recorder.Builder |
setAspectRatio(aspectRatio: Int)Sets the video aspect ratio of this Recorder. |
Recorder.Builder |
setAudioMimeType(mimeType: String)Sets the desired audio MIME type for the recording. |
Recorder.Builder |
setExecutor(executor: Executor)Sets the |
Recorder.Builder |
setQualitySelector(qualitySelector: QualitySelector)Sets the |
Recorder.Builder |
setTargetAudioChannelCount(channelCount: @IntRange(from = 1) Int)Sets the intended audio channel count for recording. |
Recorder.Builder |
setTargetAudioEncodingBitRate(bitrate: @IntRange(from = 1) Int)Sets the target audio encoding bitrate of this Recorder. |
Recorder.Builder |
setTargetVideoEncodingBitRate(bitrate: @IntRange(from = 1) Int)Sets the intended video encoding bitrate for recording. |
Recorder.Builder |
setVideoCapabilitiesSource(videoCapabilitiesSource: Int)Sets the video capabilities source. |
Recorder.Builder |
setVideoMimeType(mimeType: String)Sets the desired video MIME type for the recording. |
Public constructors
Public functions
build
fun build(): Recorder
Builds the Recorder instance.
The {code build()} method can be called multiple times, generating a new Recorder instance each time. The returned instance is configured with the options set on this builder.
setAspectRatio
fun setAspectRatio(aspectRatio: Int): Recorder.Builder
Sets the video aspect ratio of this Recorder.
The final video resolution will be based on the input aspect ratio and the QualitySelector in setQualitySelector. Both settings will be respected. For example, if the aspect ratio is 4:3 and the preferred quality in QualitySelector is HD, then a HD quality resolution with 4:3 aspect ratio such as 1280x960 or 960x720 will be used. CameraX will choose an appropriate one depending on the resolutions supported by the camera and the codec capabilities. With this setting, no other aspect ratios (such as 16:9) will be used, nor any other qualities (such as UHD, FHD and SD). If no resolution with the settings can be found, it will fail to bind VideoCapture. Therefore, a recommended way is to provide a flexible QualitySelector if there is no specific video quality requirement, such as the setting in DEFAULT_QUALITY_SELECTOR.
The default value is RATIO_DEFAULT. If no aspect ratio is set, the selected resolution will be based only on the QualitySelector.
| Parameters | |
|---|---|
aspectRatio: Int |
the aspect ratio. Possible values are |
| See also | |
|---|---|
setQualitySelector |
setAudioMimeType
fun setAudioMimeType(mimeType: String): Recorder.Builder
Sets the desired audio MIME type for the recording.
If not set, CameraX automatically chooses an appropriate audio codec based on device capabilities. Only call this method if a specific override is required.
The supported formats will depend on the device capability and can be queried by getSupportedAudioMimeTypes at runtime. The Recorder is designed to support the following MIME types:
- AAC (
MIMETYPE_AUDIO_AAC) - AMR-NB (
MIMETYPE_AUDIO_AMR_NB) - AMR-WB (
MIMETYPE_AUDIO_AMR_WB) - Opus (
MIMETYPE_AUDIO_OPUS) - Vorbis (
MIMETYPE_AUDIO_VORBIS)
IllegalArgumentException will be thrown when binding the VideoCapture use case that uses this recorder.
If a custom audio MIME type is set but a video MIME type is left as unspecified, CameraX will automatically select a compatible video codec and container format based on the chosen audio format.
| Parameters | |
|---|---|
mimeType: String |
The desired audio MIME type. |
| Returns | |
|---|---|
Recorder.Builder |
This |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if |
| See also | |
|---|---|
getSupportedAudioMimeTypes |
setExecutor
fun setExecutor(executor: Executor): Recorder.Builder
Sets the Executor that runs the Recorder background task.
The executor is used to run the Recorder tasks, the audio encoding and the video encoding. For the best performance, it's recommended to be an Executor that is capable of running at least two tasks concurrently, such as a java.util.concurrent.ThreadPoolExecutor backed by 2 or more threads.
If not set, the Recorder will be run on the IO executor internally managed by CameraX.
setQualitySelector
fun setQualitySelector(qualitySelector: QualitySelector): Recorder.Builder
Sets the QualitySelector of this Recorder.
The provided quality selector is used to select the resolution of the recording depending on the resolutions supported by the camera and codec capabilities.
If no quality selector is provided, the default is DEFAULT_QUALITY_SELECTOR.
setAspectRatio can be used with to specify the intended video aspect ratio.
| See also | |
|---|---|
QualitySelector |
|
setAspectRatio |
setTargetAudioChannelCount
fun setTargetAudioChannelCount(channelCount: @IntRange(from = 1) Int): Recorder.Builder
Sets the intended audio channel count for recording.
Common values are 1 for mono and 2 for stereo. If the requested channel count is not supported by the device, CameraX will fall back to a supported channel count. If this method is not called, an appropriate default channel count will be selected.
| Returns | |
|---|---|
Recorder.Builder |
the builder instance. |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if |
setTargetAudioEncodingBitRate
fun setTargetAudioEncodingBitRate(bitrate: @IntRange(from = 1) Int): Recorder.Builder
Sets the target audio encoding bitrate of this Recorder.
Additional checks will be performed on the requested bitrate to make sure the specified bitrate is applicable, and sometimes the passed bitrate will be changed internally to ensure the audio recording can proceed smoothly based on the capabilities of the platform.
This API only affects the audio stream and should not be considered the target for the entire recording. The video stream's bitrate is not affected by this API.
If this method isn't called, an appropriate bitrate for normal audio recording is selected by default. Only call this method if a custom bitrate is desired.
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if bitrate is 0 or less. |
setTargetVideoEncodingBitRate
fun setTargetVideoEncodingBitRate(bitrate: @IntRange(from = 1) Int): Recorder.Builder
Sets the intended video encoding bitrate for recording.
The target video encoding bitrate attempts to keep the actual video encoding bitrate close to the requested bitrate. Bitrate may vary during a recording depending on the scene being recorded.
Additional checks will be performed on the requested bitrate to make sure the specified bitrate is applicable, and sometimes the passed bitrate will be changed internally to ensure the video recording can proceed smoothly based on the capabilities of the platform.
This API only affects the video stream and should not be considered the target for the entire recording. The audio stream's bitrate is not affected by this API.
If this method isn't called, an appropriate bitrate for normal video recording is selected by default. Only call this method if a custom bitrate is desired.
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if bitrate is 0 or less. |
setVideoCapabilitiesSource
fun setVideoCapabilitiesSource(videoCapabilitiesSource: Int): Recorder.Builder
Sets the video capabilities source.
Possible values include VIDEO_CAPABILITIES_SOURCE_CAMCORDER_PROFILE and VIDEO_CAPABILITIES_SOURCE_CODEC_CAPABILITIES. The final selected quality from the QualitySelector will be affected by the source. See the document of the constants for more detail.
VIDEO_CAPABILITIES_SOURCE_CAMCORDER_PROFILE will be the default if not set.
| Parameters | |
|---|---|
videoCapabilitiesSource: Int |
the video capabilities source. |
| Returns | |
|---|---|
Recorder.Builder |
the builder instance. |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if videoCapabilitiesSource is not one of the possible values. |
setVideoMimeType
fun setVideoMimeType(mimeType: String): Recorder.Builder
Sets the desired video MIME type for the recording.
If not set, CameraX automatically chooses an appropriate video codec based on device capabilities. Only call this method if a specific override is required.
The supported formats will depend on the device capability and can be queried by getSupportedVideoMimeTypes at runtime. The Recorder is designed to support the following MIME types:
- AV1 (
MIMETYPE_VIDEO_AV1) - MPEG-4 (
MIMETYPE_VIDEO_MPEG4) - H.263 (
MIMETYPE_VIDEO_H263) - H.264 (
MIMETYPE_VIDEO_AVC) - H.265 (
MIMETYPE_VIDEO_HEVC) - VP8 (
MIMETYPE_VIDEO_VP8) - VP9 (
MIMETYPE_VIDEO_VP9) - APV (
MIMETYPE_VIDEO_APV) - Dolby Vision (
MIMETYPE_VIDEO_DOLBY_VISION)
IllegalArgumentException will be thrown when binding the VideoCapture use case that uses this recorder.
If a custom video MIME type is set but an audio MIME type is left as unspecified, CameraX will automatically select a compatible audio codec and container format based on the chosen video format.
MIME type specific capabilities for a given camera, such as supported qualities and dynamic ranges, can be queried using getVideoCapabilities.
| Parameters | |
|---|---|
mimeType: String |
The desired video MIME type. |
| Returns | |
|---|---|
Recorder.Builder |
This |
| Throws | |
|---|---|
java.lang.IllegalArgumentException |
if |