Class ExportResult
- java.lang.Object
-
- com.google.android.exoplayer2.transformer.ExportResult
-
@Deprecated public final class ExportResult extends Object
Deprecated.com.google.android.exoplayer2 is deprecated. Please migrate to androidx.media3 (which contains the same ExoPlayer code). See the migration guide for more details, including a script to help with the migration.Information about the result of an export.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classExportResult.BuilderDeprecated.A builder forExportResultinstances.static classExportResult.ProcessedInputDeprecated.An input entirely or partially processed.
-
Field Summary
Fields Modifier and Type Field Description StringaudioEncoderNameDeprecated.The name of the audio encoder used, ornullif none were used.intaverageAudioBitrateDeprecated.The average bitrate of the audio track data, orC.RATE_UNSET_INTif unset or unknown.intaverageVideoBitrateDeprecated.The average bitrate of the video track data, orC.RATE_UNSET_INTif unset or unknown.intchannelCountDeprecated.The channel count of the audio, orC.LENGTH_UNSETif unset or unknown.ColorInfocolorInfoDeprecated.TheColorInfoof the video, ornullif unset or unknown.longdurationMsDeprecated.The duration of the file in milliseconds, orC.TIME_UNSETif unset or unknown.ExportExceptionexportExceptionDeprecated.TheExportExceptionthat caused the export to fail, ornullif the export was a success.longfileSizeBytesDeprecated.The size of the file in bytes, orC.LENGTH_UNSETif unset or unknown.intheightDeprecated.The height of the video, orC.LENGTH_UNSETif unset or unknown.ImmutableList<ExportResult.ProcessedInput>processedInputsDeprecated.The list of processed inputs.intsampleRateDeprecated.The sample rate of the audio, orC.RATE_UNSET_INTif unset or unknown.StringvideoEncoderNameDeprecated.The name of the video encoder used, ornullif none were used.intvideoFrameCountDeprecated.The number of video frames.intwidthDeprecated.The width of the video, orC.LENGTH_UNSETif unset or unknown.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description ExportResult.BuilderbuildUpon()Deprecated.booleanequals(Object o)Deprecated.inthashCode()Deprecated.
-
-
-
Field Detail
-
processedInputs
public final ImmutableList<ExportResult.ProcessedInput> processedInputs
Deprecated.The list of processed inputs.
-
durationMs
public final long durationMs
Deprecated.The duration of the file in milliseconds, orC.TIME_UNSETif unset or unknown.
-
fileSizeBytes
public final long fileSizeBytes
Deprecated.The size of the file in bytes, orC.LENGTH_UNSETif unset or unknown.
-
averageAudioBitrate
public final int averageAudioBitrate
Deprecated.The average bitrate of the audio track data, orC.RATE_UNSET_INTif unset or unknown.
-
channelCount
public final int channelCount
Deprecated.The channel count of the audio, orC.LENGTH_UNSETif unset or unknown.
-
sampleRate
public final int sampleRate
Deprecated.The sample rate of the audio, orC.RATE_UNSET_INTif unset or unknown.
-
audioEncoderName
@Nullable public final String audioEncoderName
Deprecated.The name of the audio encoder used, ornullif none were used.
-
averageVideoBitrate
public final int averageVideoBitrate
Deprecated.The average bitrate of the video track data, orC.RATE_UNSET_INTif unset or unknown.
-
colorInfo
@Nullable public final ColorInfo colorInfo
Deprecated.TheColorInfoof the video, ornullif unset or unknown.
-
height
public final int height
Deprecated.The height of the video, orC.LENGTH_UNSETif unset or unknown.
-
width
public final int width
Deprecated.The width of the video, orC.LENGTH_UNSETif unset or unknown.
-
videoFrameCount
public final int videoFrameCount
Deprecated.The number of video frames.
-
videoEncoderName
@Nullable public final String videoEncoderName
Deprecated.The name of the video encoder used, ornullif none were used.
-
exportException
@Nullable public final ExportException exportException
Deprecated.TheExportExceptionthat caused the export to fail, ornullif the export was a success.
-
-