2022-05-08 16:11:08 +05:30
|
|
|
package com.github.libretube
|
|
|
|
|
|
|
|
import android.content.Context
|
2022-05-27 01:08:25 +05:30
|
|
|
import android.support.v4.media.session.MediaSessionCompat
|
2022-05-08 16:11:08 +05:30
|
|
|
import com.github.libretube.obj.Streams
|
2022-05-27 22:49:08 +05:30
|
|
|
import com.google.android.exoplayer2.C
|
2022-05-08 16:11:08 +05:30
|
|
|
import com.google.android.exoplayer2.ExoPlayer
|
|
|
|
import com.google.android.exoplayer2.MediaItem
|
2022-05-27 22:49:08 +05:30
|
|
|
import com.google.android.exoplayer2.audio.AudioAttributes
|
2022-05-27 01:08:25 +05:30
|
|
|
import com.google.android.exoplayer2.ext.mediasession.MediaSessionConnector
|
2022-05-20 17:50:26 +05:30
|
|
|
import com.google.android.exoplayer2.ui.PlayerNotificationManager
|
2022-05-08 16:11:08 +05:30
|
|
|
import kotlinx.coroutines.launch
|
|
|
|
import kotlinx.coroutines.runBlocking
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads the selected video audio in background mode with a notification area.
|
|
|
|
*/
|
2022-05-20 01:43:42 +05:30
|
|
|
class BackgroundMode {
|
2022-05-08 16:11:08 +05:30
|
|
|
/**
|
|
|
|
* The response that gets when called the Api.
|
|
|
|
*/
|
|
|
|
private var response: Streams? = null
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The [ExoPlayer] player. Followed tutorial [here](https://developer.android.com/codelabs/exoplayer-intro)
|
|
|
|
*/
|
|
|
|
private var player: ExoPlayer? = null
|
|
|
|
private var playWhenReadyPlayer = true
|
|
|
|
|
2022-05-27 01:08:25 +05:30
|
|
|
/**
|
|
|
|
* The [MediaSessionCompat] for the [response].
|
|
|
|
*/
|
|
|
|
private lateinit var mediaSession: MediaSessionCompat
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The [MediaSessionConnector] to connect with the [mediaSession] and implement it with the [player].
|
|
|
|
*/
|
|
|
|
private lateinit var mediaSessionConnector: MediaSessionConnector
|
2022-05-20 17:50:26 +05:30
|
|
|
|
2022-05-08 16:11:08 +05:30
|
|
|
/**
|
2022-05-27 01:08:25 +05:30
|
|
|
* The [PlayerNotificationManager] to load the [mediaSession] content on it.
|
|
|
|
*/
|
|
|
|
private lateinit var playerNotification: PlayerNotificationManager
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Initializes the [player] with the [MediaItem].
|
2022-05-08 16:11:08 +05:30
|
|
|
*/
|
2022-05-20 01:43:42 +05:30
|
|
|
private fun initializePlayer(c: Context) {
|
2022-05-27 22:49:08 +05:30
|
|
|
/**
|
|
|
|
* The [audioAttributes] handle the audio focus of the [player]
|
|
|
|
*/
|
|
|
|
val audioAttributes = AudioAttributes.Builder()
|
|
|
|
.setUsage(C.USAGE_MEDIA)
|
|
|
|
.setContentType(C.CONTENT_TYPE_MUSIC)
|
|
|
|
.build()
|
|
|
|
|
|
|
|
if (player == null) {
|
|
|
|
player = ExoPlayer.Builder(c)
|
|
|
|
.setAudioAttributes(audioAttributes, true)
|
|
|
|
.build()
|
|
|
|
}
|
2022-05-27 01:08:25 +05:30
|
|
|
setMediaItem(c)
|
2022-05-08 16:11:08 +05:30
|
|
|
}
|
|
|
|
|
2022-05-20 17:50:26 +05:30
|
|
|
/**
|
2022-05-27 01:08:25 +05:30
|
|
|
* Initializes the [playerNotification] attached to the [player] and shows it.
|
2022-05-20 17:50:26 +05:30
|
|
|
*/
|
|
|
|
private fun initializePlayerNotification(c: Context) {
|
2022-06-01 15:33:00 +05:30
|
|
|
playerNotification = PlayerNotificationManager
|
|
|
|
.Builder(c, 1, "background_mode").build()
|
2022-05-27 01:08:25 +05:30
|
|
|
playerNotification.setPlayer(player)
|
2022-06-01 15:33:00 +05:30
|
|
|
playerNotification.setUsePreviousAction(false)
|
|
|
|
playerNotification.setUseNextAction(false)
|
2022-05-27 01:08:25 +05:30
|
|
|
playerNotification.setMediaSessionToken(mediaSession.sessionToken)
|
2022-05-20 17:50:26 +05:30
|
|
|
}
|
|
|
|
|
2022-05-20 01:43:42 +05:30
|
|
|
/**
|
2022-05-27 01:08:25 +05:30
|
|
|
* Sets the [MediaItem] with the [response] into the [player]. Also creates a [MediaSessionConnector]
|
|
|
|
* with the [mediaSession] and attach it to the [player].
|
2022-05-20 01:43:42 +05:30
|
|
|
*/
|
2022-05-27 01:08:25 +05:30
|
|
|
private fun setMediaItem(c: Context) {
|
2022-05-20 01:43:42 +05:30
|
|
|
response?.let {
|
2022-05-27 01:08:25 +05:30
|
|
|
val mediaItem = MediaItem.Builder().setUri(it.hls!!).build()
|
2022-05-20 01:43:42 +05:30
|
|
|
player?.setMediaItem(mediaItem)
|
|
|
|
}
|
2022-05-27 01:08:25 +05:30
|
|
|
|
|
|
|
mediaSession = MediaSessionCompat(c, this.javaClass.name)
|
|
|
|
mediaSession.isActive = true
|
|
|
|
|
|
|
|
mediaSessionConnector = MediaSessionConnector(mediaSession)
|
|
|
|
mediaSessionConnector.setPlayer(player)
|
2022-05-20 01:43:42 +05:30
|
|
|
}
|
|
|
|
|
2022-05-08 16:11:08 +05:30
|
|
|
/**
|
|
|
|
* Gets the video data and prepares the [player].
|
|
|
|
*/
|
2022-05-27 22:52:45 +05:30
|
|
|
fun playOnBackgroundMode(c: Context, videoId: String, seekToPosition: Long) {
|
2022-05-08 16:11:08 +05:30
|
|
|
runBlocking {
|
|
|
|
val job = launch {
|
|
|
|
response = RetrofitInstance.api.getStreams(videoId)
|
|
|
|
}
|
|
|
|
// Wait until the job is done, to load correctly later in the player
|
|
|
|
job.join()
|
|
|
|
|
2022-05-20 01:43:42 +05:30
|
|
|
initializePlayer(c)
|
2022-05-20 17:50:26 +05:30
|
|
|
initializePlayerNotification(c)
|
2022-05-08 16:11:08 +05:30
|
|
|
|
|
|
|
player?.apply {
|
|
|
|
playWhenReady = playWhenReadyPlayer
|
|
|
|
prepare()
|
|
|
|
}
|
2022-05-27 22:49:08 +05:30
|
|
|
|
|
|
|
if (!seekToPosition.equals(0)) player?.seekTo(seekToPosition)
|
2022-05-08 16:11:08 +05:30
|
|
|
}
|
|
|
|
}
|
2022-05-20 01:43:42 +05:30
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a singleton of this class, to not create a new [player] every time.
|
|
|
|
*/
|
|
|
|
companion object {
|
|
|
|
private var INSTANCE: BackgroundMode? = null
|
|
|
|
|
|
|
|
fun getInstance(): BackgroundMode {
|
|
|
|
if (INSTANCE == null) INSTANCE = BackgroundMode()
|
|
|
|
return INSTANCE!!
|
|
|
|
}
|
|
|
|
}
|
2022-05-08 16:11:08 +05:30
|
|
|
}
|