/* 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 import androidx.media3.common.MediaItem import androidx.media3.common.Player import kotlinx.coroutines.flow.MutableStateFlow import kotlinx.coroutines.flow.SharedFlow import kotlinx.coroutines.flow.StateFlow import kotlin.Exception enum class PlayMode { IDLE, EMBEDDED_VIDEO, FULLSCREEN_VIDEO, PIP, BACKGROUND, AUDIO_FOREGROUND, } enum class RepeatMode { DONT_REPEAT, REPEAT_ALL, REPEAT_ONE } interface NewPlayer { // preferences val preferredVideoVariants: List val prefearedAudioVariants: List val preferredStreamLanguage: List val exoPlayer: StateFlow var playWhenReady: Boolean val duration: Long val bufferedPercentage: Int var currentPosition: Long var fastSeekAmountSec: Int val playBackMode: MutableStateFlow var shuffle: Boolean var repeatMode: RepeatMode val playlist: StateFlow> val currentlyPlaying: StateFlow var currentlyPlayingPlaylistItem: Int val currentChapters: StateFlow> // callbacks val errorFlow: SharedFlow val onExoPlayerEvent: SharedFlow> // methods fun prepare() fun play() fun pause() fun addToPlaylist(item: String) fun movePlaylistItem(fromIndex: Int, toIndex: Int) fun removePlaylistItem(uniqueId: Long) fun playStream(item: String, playMode: PlayMode) fun selectChapter(index: Int) fun playStream(item: String, streamVariant: StreamVariant, playMode: PlayMode) fun release() fun getItemLinkOfMediaItem(mediaItem: MediaItem) : String }