* Scrubbing Preview Add Jellyscrub plugin support * Fix syntax * Some adjustments Rounded corners Fix switch * refactor: switch to `StateFlow` * refactor: remove `FrameLayout` * refactor: move trick play retrieval to `onMediaItemTransition` Only load trick play data for current item Make it async --------- Co-authored-by: Jarne Demeulemeester <jarnedemeulemeester@gmail.com>
12 lines
289 B
Kotlin
12 lines
289 B
Kotlin
package dev.jdtech.jellyfin.models
|
|
|
|
import kotlinx.serialization.SerialName
|
|
import kotlinx.serialization.Serializable
|
|
|
|
@Serializable
|
|
data class TrickPlayManifest(
|
|
@SerialName("Version")
|
|
val version: String,
|
|
@SerialName("WidthResolutions")
|
|
val widthResolutions: List<Int>
|
|
)
|