/* NewPlayer * * @author Christian Schabesberger * * Copyright (C) NewPipe e.V. 2024 * * NewPlayer is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * NewPlayer is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with NewPlayer. If not, see . */ package net.newpipe.newplayer.model import android.net.Uri import androidx.media3.common.MediaItem import androidx.media3.common.MediaMetadata import androidx.media3.common.util.UnstableApi import net.newpipe.newplayer.Chapter import net.newpipe.newplayer.RepeatMode import net.newpipe.newplayer.ui.ContentScale data class GurkenItem( val title: String, val creator: String, val id: String, val uniqueId: Long, val thumbnail: Uri?, val lengthInS: Int ) { companion object { val DEFAULT = GurkenItem( title = "", creator = "", id = "", uniqueId = -1L, thumbnail = null, lengthInS = 0 ) } } @UnstableApi data class VideoPlayerUIState( val uiMode: UIModeState, val playing: Boolean, val contentRatio: Float, val embeddedUiRatio: Float, val contentFitMode: ContentScale, val seekerPosition: Float, val bufferedPercentage: Float, val isLoading: Boolean, val durationInMs: Long, val playbackPositionInMs: Long, val playbackPositionInPlaylistS: Int, val fastSeekSeconds: Int, val soundVolume: Float, val brightness: Float?, // when null use system value val embeddedUiConfig: EmbeddedUiConfig?, val playList: List, val chapters: List, val shuffleEnabled: Boolean, val repeatMode: RepeatMode, val playListDurationInS: Int, val currentlyPlaying: MediaItem?, val currentPlaylistItemIndex: Int ) { companion object { val DEFAULT = VideoPlayerUIState( uiMode = UIModeState.PLACEHOLDER, playing = false, contentRatio = 16 / 9f, embeddedUiRatio = 16f / 9f, contentFitMode = ContentScale.FIT_INSIDE, seekerPosition = 0f, bufferedPercentage = 0f, isLoading = true, durationInMs = 0, playbackPositionInPlaylistS = 0, playbackPositionInMs = 0, fastSeekSeconds = 0, soundVolume = 0f, brightness = null, embeddedUiConfig = null, playList = emptyList(), chapters = emptyList(), shuffleEnabled = false, repeatMode = RepeatMode.DONT_REPEAT, playListDurationInS = 0, currentlyPlaying = null, currentPlaylistItemIndex = 0 ) val DUMMY = DEFAULT.copy( uiMode = UIModeState.EMBEDDED_VIDEO, playing = true, seekerPosition = 0.3f, bufferedPercentage = 0.5f, isLoading = false, durationInMs = 12000, playbackPositionInPlaylistS = 5039, playbackPositionInMs = 400, fastSeekSeconds = 10, soundVolume = 0.5f, brightness = 0.2f, shuffleEnabled = true, playListDurationInS = 5493, currentlyPlaying = MediaItem.Builder() .setUri("https://ftp.fau.de/cdn.media.ccc.de/congress/2010/mp4-h264-HQ/27c3-4159-en-reverse_engineering_mos_6502.mp4") .setMediaId("0") .setMediaMetadata(MediaMetadata.Builder() .setTitle("Superawesome Video") .setArtist("Yours truely") .setArtworkUri(null) .setDurationMs(4201000L) .build()) .build(), currentPlaylistItemIndex = 1, chapters = arrayListOf( Chapter( chapterStartInMs = 0, chapterTitle = "Intro", thumbnail = null ), Chapter( chapterStartInMs = 5000, chapterTitle = "First Chapter", thumbnail = null ), Chapter( chapterStartInMs = 10000, chapterTitle = "Second Chapter", thumbnail = null ), ), playList = arrayListOf( MediaItem.Builder() .setUri("https://ftp.fau.de/cdn.media.ccc.de/congress/2010/mp4-h264-HQ/27c3-4159-en-reverse_engineering_mos_6502.mp4") .setMediaId("0") .setMediaMetadata(MediaMetadata.Builder() .setTitle("Stream 1") .setArtist("Yours truely") .setArtworkUri(null) .setDurationMs(4201000L) .build()) .build(), MediaItem.Builder() .setUri("https://ftp.fau.de/cdn.media.ccc.de/congress/2010/mp4-h264-HQ/27c3-4159-en-reverse_engineering_mos_6502.mp4") .setMediaId("1") .setMediaMetadata(MediaMetadata.Builder() .setTitle("Stream 2") .setArtist("Yours truely") .setArtworkUri(null) .setDurationMs(3201000L) .build()) .build(), MediaItem.Builder() .setUri("https://ftp.fau.de/cdn.media.ccc.de/congress/2010/mp4-h264-HQ/27c3-4159-en-reverse_engineering_mos_6502.mp4") .setMediaId("2") .setMediaMetadata(MediaMetadata.Builder() .setTitle("Stream 3") .setArtist("Yours truely") .setArtworkUri(null) .setDurationMs(2201000L) .build()) .build(), ) ) } }