Class TransformationRequest.Builder
- java.lang.Object
-
- com.google.android.exoplayer2.transformer.TransformationRequest.Builder
-
- Enclosing class:
- TransformationRequest
public static final class TransformationRequest.Builder extends Object
A builder forTransformationRequest
instances.
-
-
Constructor Summary
Constructors Constructor Description Builder()
Creates a new instance with default values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TransformationRequest
build()
Builds aTransformationRequest
instance.TransformationRequest.Builder
experimental_setEnableHdrEditing(boolean enableHdrEditing)
Sets whether to attempt to process any input video stream as a high dynamic range (HDR) signal.TransformationRequest.Builder
setAudioMimeType(String audioMimeType)
Sets the audio MIME type of the output.TransformationRequest.Builder
setEnableRequestSdrToneMapping(boolean enableRequestSdrToneMapping)
Sets whether to request tone-mapping to standard dynamic range (SDR).TransformationRequest.Builder
setFlattenForSlowMotion(boolean flattenForSlowMotion)
Sets whether the input should be flattened for media containing slow motion markers.TransformationRequest.Builder
setResolution(int outputHeight)
Sets the output resolution using the output height.TransformationRequest.Builder
setRotationDegrees(float rotationDegrees)
Sets the rotation, in degrees, counterclockwise, to apply to each frame.TransformationRequest.Builder
setScale(float scaleX, float scaleY)
Sets the x and y axis scaling factors to apply to each frame's width and height, stretching the video along these axes appropriately.TransformationRequest.Builder
setVideoMimeType(String videoMimeType)
Sets the video MIME type of the output.
-
-
-
Constructor Detail
-
Builder
public Builder()
Creates a new instance with default values.Use
TransformationRequest.buildUpon()
to obtain a builder representing an existingTransformationRequest
.
-
-
Method Detail
-
setFlattenForSlowMotion
public TransformationRequest.Builder setFlattenForSlowMotion(boolean flattenForSlowMotion)
Sets whether the input should be flattened for media containing slow motion markers.The transformed output is obtained by removing the slow motion metadata and by actually slowing down the parts of the video and audio streams defined in this metadata. The default value for
flattenForSlowMotion
isfalse
.Only Samsung Extension Format (SEF) slow motion metadata type is supported. The transformation has no effect if the input does not contain this metadata type.
For SEF slow motion media, the following assumptions are made on the input:
- The input container format is (unfragmented) MP4.
- The input contains an AVC video elementary stream with temporal SVC.
- The recording frame rate of the video is 120 or 240 fps.
If specifying a
MediaSource.Factory
usingTransformer.Builder.setMediaSourceFactory(MediaSource.Factory)
, make sure thatMp4Extractor.FLAG_READ_SEF_DATA
is set on theMp4Extractor
used. Otherwise, the slow motion metadata will be ignored and the input won't be flattened.Using slow motion flattening together with
MediaItem.ClippingConfiguration
is not supported yet.- Parameters:
flattenForSlowMotion
- Whether to flatten for slow motion.- Returns:
- This builder.
-
setScale
public TransformationRequest.Builder setScale(float scaleX, float scaleY)
Sets the x and y axis scaling factors to apply to each frame's width and height, stretching the video along these axes appropriately.The default value for
scaleX
andscaleY
, 1, corresponds to not scaling along the x and y axes, respectively.- Parameters:
scaleX
- The multiplier by which the frame will scale horizontally, along the x-axis.scaleY
- The multiplier by which the frame will scale vertically, along the y-axis.- Returns:
- This builder.
-
setRotationDegrees
public TransformationRequest.Builder setRotationDegrees(float rotationDegrees)
Sets the rotation, in degrees, counterclockwise, to apply to each frame.The output frame's width and height are automatically adjusted to preserve all input pixels. The rotated input frame is fitted inside an enclosing black rectangle if its edges aren't parallel to the x and y axes.
The default value, 0, corresponds to not applying any rotation.
- Parameters:
rotationDegrees
- The counterclockwise rotation, in degrees.- Returns:
- This builder.
-
setResolution
public TransformationRequest.Builder setResolution(int outputHeight)
Sets the output resolution using the output height.Output width of the displayed video will scale to preserve the video's aspect ratio after other transformations.
For example, a 1920x1440 video can be scaled to 640x480 by calling setResolution(480).
The default value,
C.LENGTH_UNSET
, leaves the width and height unchanged unless scaling or @linkplain #setRotationDegrees(float) rotation} are requested.- Parameters:
outputHeight
- The output height of the displayed video, in pixels.- Returns:
- This builder.
-
setVideoMimeType
public TransformationRequest.Builder setVideoMimeType(@Nullable String videoMimeType)
Sets the video MIME type of the output.The default value is
null
which corresponds to using the same MIME type as the input. Supported MIME types are:MimeTypes.VIDEO_H263
MimeTypes.VIDEO_H264
MimeTypes.VIDEO_H265
from API level 24MimeTypes.VIDEO_MP4V
- Parameters:
videoMimeType
- The MIME type of the video samples in the output.- Returns:
- This builder.
- Throws:
IllegalArgumentException
- If thevideoMimeType
is non-null but not a video MIME type.
-
setAudioMimeType
public TransformationRequest.Builder setAudioMimeType(@Nullable String audioMimeType)
Sets the audio MIME type of the output.The default value is
null
which corresponds to using the same MIME type as the input. Supported MIME types are:- Parameters:
audioMimeType
- The MIME type of the audio samples in the output.- Returns:
- This builder.
- Throws:
IllegalArgumentException
- If theaudioMimeType
is non-null but not an audio MIME type.
-
setEnableRequestSdrToneMapping
public TransformationRequest.Builder setEnableRequestSdrToneMapping(boolean enableRequestSdrToneMapping)
Sets whether to request tone-mapping to standard dynamic range (SDR). If enabled and supported, high dynamic range (HDR) input will be tone-mapped into an SDR opto-electrical transfer function before processing.The setting has no effect if the input is already in SDR, or if tone-mapping is not supported. Currently tone-mapping is only guaranteed to be supported from Android T onwards.
- Parameters:
enableRequestSdrToneMapping
- Whether to request tone-mapping down to SDR.- Returns:
- This builder.
-
experimental_setEnableHdrEditing
public TransformationRequest.Builder experimental_setEnableHdrEditing(boolean enableHdrEditing)
Sets whether to attempt to process any input video stream as a high dynamic range (HDR) signal.This method is experimental, and will be renamed or removed in a future release. The HDR editing feature is under development and is intended for developing/testing HDR processing and encoding support. HDR editing can't be enabled at the same time as SDR tone-mapping.
- Parameters:
enableHdrEditing
- Whether to attempt to process any input video stream as a high dynamic range (HDR) signal.- Returns:
- This builder.
-
build
public TransformationRequest build()
Builds aTransformationRequest
instance.
-
-