Class Composition
- java.lang.Object
-
- com.google.android.exoplayer2.transformer.Composition
-
@Deprecated public final class Composition 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.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
Composition.Builder
Deprecated.A builder forComposition
instances.
-
Field Summary
Fields Modifier and Type Field Description Effects
effects
Deprecated.TheEffects
to apply to the composition.boolean
forceAudioTrack
Deprecated.Whether the output file should always contain an audio track.ImmutableList<EditedMediaItemSequence>
sequences
Deprecated.TheEditedMediaItemSequence
instances to compose.boolean
transmuxAudio
Deprecated.Whether to transmux the media items' audio tracks.boolean
transmuxVideo
Deprecated.Whether to transmux the media items' video tracks.
-
-
-
Field Detail
-
sequences
public final ImmutableList<EditedMediaItemSequence> sequences
Deprecated.TheEditedMediaItemSequence
instances to compose.For more information, see
Builder(List)
.
-
forceAudioTrack
public final boolean forceAudioTrack
Deprecated.Whether the output file should always contain an audio track.For more information, see
Composition.Builder.experimentalSetForceAudioTrack(boolean)
.
-
transmuxAudio
public final boolean transmuxAudio
Deprecated.Whether to transmux the media items' audio tracks.For more information, see
Composition.Builder.setTransmuxAudio(boolean)
.
-
transmuxVideo
public final boolean transmuxVideo
Deprecated.Whether to transmux the media items' video tracks.For more information, see
Composition.Builder.setTransmuxVideo(boolean)
.
-
-