docs/doc/reference/com/google/android/exoplayer2/transformer/EditedMediaItemSequence.html
Package com.google.android.exoplayer2.transformer
[@Deprecated](https://developer.android.com/reference/java/lang/Deprecated.html "class or interface in java.lang")public final classEditedMediaItemSequenceextends[Object](https://developer.android.com/reference/java/lang/Object.html "class or interface in java.lang")
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.
A sequence of EditedMediaItem instances.
EditedMediaItem instances in a sequence don't overlap in time.
Fields | Modifier and Type | Field | Description |
| --- | --- | --- |
| ImmutableList<EditedMediaItem> | editedMediaItems |
Deprecated.
The EditedMediaItem instances in the sequence.
|
| boolean | isLooping |
Deprecated.
Whether this sequence is looping. |
Constructors | Constructor | Description |
| --- | --- |
| EditedMediaItemSequence(List<EditedMediaItem> editedMediaItems) |
Deprecated.
Creates an instance.
|
| EditedMediaItemSequence(List<EditedMediaItem> editedMediaItems, boolean isLooping) |
Deprecated.
Creates an instance. |
-
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
public final[ImmutableList](https://guava.dev/releases/31.1-android/api/docs/com/google/common/collect/ImmutableList.html?is-external=true "class or interface in com.google.common.collect")<[EditedMediaItem](EditedMediaItem.html "class in com.google.android.exoplayer2.transformer")> editedMediaItems
Deprecated.
The EditedMediaItem instances in the sequence.
This list must not be empty.
-
public final boolean isLooping
Deprecated.
Whether this sequence is looping.
This value indicates whether to loop over the EditedMediaItem instances in this sequence until all the non-looping sequences in the Composition have ended.
A looping sequence ends at the same time as the longest non-looping sequence. This means that the last exported EditedMediaItem from a looping sequence can be only partially exported.
-
public EditedMediaItemSequence([List](https://developer.android.com/reference/java/util/List.html "class or interface in java.util")<[EditedMediaItem](EditedMediaItem.html "class in com.google.android.exoplayer2.transformer")> editedMediaItems)
Deprecated.
Creates an instance.
Parameters:editedMediaItems - The editedMediaItems.
-
public EditedMediaItemSequence([List](https://developer.android.com/reference/java/util/List.html "class or interface in java.util")<[EditedMediaItem](EditedMediaItem.html "class in com.google.android.exoplayer2.transformer")> editedMediaItems,
boolean isLooping)
Deprecated.
Creates an instance.
Parameters:editedMediaItems - The editedMediaItems.isLooping - Whether the sequence is looping.