Class WidevineUtil
- java.lang.Object
-
- com.google.android.exoplayer2.drm.WidevineUtil
-
@Deprecated public final class WidevineUtil 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.Utility methods for Widevine.
-
-
Field Summary
Fields Modifier and Type Field Description static String
PROPERTY_LICENSE_DURATION_REMAINING
Deprecated.Widevine specific key status field name for the remaining license duration, in seconds.static String
PROPERTY_PLAYBACK_DURATION_REMAINING
Deprecated.Widevine specific key status field name for the remaining playback duration, in seconds.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static Pair<Long,Long>
getLicenseDurationRemainingSec(DrmSession drmSession)
Deprecated.Returns license and playback durations remaining in seconds.
-
-
-
Field Detail
-
PROPERTY_LICENSE_DURATION_REMAINING
public static final String PROPERTY_LICENSE_DURATION_REMAINING
Deprecated.Widevine specific key status field name for the remaining license duration, in seconds.- See Also:
- Constant Field Values
-
PROPERTY_PLAYBACK_DURATION_REMAINING
public static final String PROPERTY_PLAYBACK_DURATION_REMAINING
Deprecated.Widevine specific key status field name for the remaining playback duration, in seconds.- See Also:
- Constant Field Values
-
-
Method Detail
-
getLicenseDurationRemainingSec
@Nullable public static Pair<Long,Long> getLicenseDurationRemainingSec(DrmSession drmSession)
Deprecated.Returns license and playback durations remaining in seconds.- Parameters:
drmSession
- The drm session to query.- Returns:
- A
Pair
consisting of the remaining license and playback durations in seconds, or null if called before the session has been opened or after it's been released.
-
-