-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: incorrect startup time after enable, disable, and videoChange (#89…
…) (#90) * Lots of logging * test case for enable/disable * Ok so we can enable/disable or do videoChange now * Ok now we can control that * Accidental extra delay * this works * fix videoChange * Ok now i think its ready to clean up * nicer log tag * some notes * Slightly better * Separate example * that's kinda better * more cleanup * yet more cleanup * ok last cleanup * use enable and disable by default
- Loading branch information
1 parent
86b79ad
commit 5928c53
Showing
7 changed files
with
214 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
182 changes: 182 additions & 0 deletions
182
app/src/main/java/com/mux/stats/muxdatasdkformedia3/examples/basic/PlayerReuseActivity.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,182 @@ | ||
package com.mux.stats.muxdatasdkformedia3.examples.basic | ||
|
||
import android.net.Uri | ||
import android.os.Bundle | ||
import android.util.Log | ||
import android.widget.Toast | ||
import androidx.annotation.OptIn | ||
import androidx.appcompat.app.AppCompatActivity | ||
import androidx.lifecycle.lifecycleScope | ||
import androidx.media3.common.MediaItem | ||
import androidx.media3.common.MediaMetadata | ||
import androidx.media3.common.PlaybackException | ||
import androidx.media3.common.Player | ||
import androidx.media3.common.util.UnstableApi | ||
import androidx.media3.exoplayer.ExoPlayer | ||
import androidx.media3.ui.PlayerView.KEEP_SCREEN_ON | ||
import androidx.media3.ui.PlayerView.SHOW_BUFFERING_WHEN_PLAYING | ||
import com.mux.stats.muxdatasdkformedia3.Constants | ||
import com.mux.stats.muxdatasdkformedia3.databinding.ActivityPlayerBinding | ||
import com.mux.stats.muxdatasdkformedia3.toMediaItem | ||
import com.mux.stats.sdk.core.model.CustomerData | ||
import com.mux.stats.sdk.core.model.CustomerPlayerData | ||
import com.mux.stats.sdk.core.model.CustomerVideoData | ||
import com.mux.stats.sdk.core.model.CustomerViewData | ||
import com.mux.stats.sdk.muxstats.MuxDataSdk | ||
import com.mux.stats.sdk.muxstats.MuxStatsSdkMedia3 | ||
import com.mux.stats.sdk.muxstats.monitorWithMuxData | ||
import kotlinx.coroutines.Dispatchers | ||
import kotlinx.coroutines.delay | ||
import kotlinx.coroutines.launch | ||
|
||
class PlayerReuseActivity : AppCompatActivity() { | ||
|
||
private lateinit var view: ActivityPlayerBinding | ||
private var player: Player? = null | ||
private var muxStats: MuxStatsSdkMedia3<ExoPlayer>? = null | ||
|
||
@OptIn(UnstableApi::class) | ||
override fun onCreate(savedInstanceState: Bundle?) { | ||
super.onCreate(savedInstanceState) | ||
view = ActivityPlayerBinding.inflate(layoutInflater) | ||
setContentView(view.root) | ||
|
||
view.playerView.apply { | ||
setShowBuffering(SHOW_BUFFERING_WHEN_PLAYING) | ||
} | ||
window.addFlags(KEEP_SCREEN_ON) | ||
} | ||
|
||
override fun onResume() { | ||
super.onResume() | ||
startPlaying( | ||
intent.getStringExtra(EXTRA_URL) ?: Constants.VOD_TEST_URL_DRAGON_WARRIOR_LADY | ||
) | ||
} | ||
|
||
override fun onPause() { | ||
stopPlaying() | ||
super.onPause() | ||
} | ||
|
||
private fun startPlaying(mediaUrl: String) { | ||
stopPlaying() | ||
|
||
player = createPlayer().also { newPlayer -> | ||
muxStats = monitorPlayer(newPlayer) | ||
|
||
view.playerView.player = newPlayer | ||
newPlayer.setMediaItem(createMediaItem(mediaUrl)) | ||
newPlayer.prepare() | ||
newPlayer.playWhenReady = true | ||
|
||
// now change the video a couple of times | ||
lifecycleScope.launch(Dispatchers.Main) { | ||
val usingEnableAndDisable = true // If false, will use videoChange instead | ||
|
||
delay(10_000) | ||
Log.d(TAG, "disabling") | ||
if (usingEnableAndDisable) { | ||
muxStats?.disable() | ||
} | ||
|
||
Log.d(TAG, "playing Steve video") | ||
newPlayer.setMediaItem(MediaItem.fromUri(Uri.parse(Constants.VOD_TEST_URL_STEVE))) | ||
if (!usingEnableAndDisable) { | ||
Log.d(TAG, "calling videoChange() 1") | ||
muxStats?.videoChange(CustomerVideoData().apply { | ||
videoTitle = "Old Keynote (Second)" | ||
}) | ||
} | ||
newPlayer.prepare() | ||
newPlayer.play() | ||
delay(10_000) | ||
|
||
Log.d(TAG, "playing Big Buck Bunny") | ||
// stop() is optional | ||
//newPlayer.stop() | ||
|
||
newPlayer.setMediaItem(MediaItem.fromUri(Uri.parse(Constants.VOD_TEST_URL_BIG_BUCK_BUNNY))) | ||
if (!usingEnableAndDisable) { | ||
Log.d(TAG, "calling videoChange() 2") | ||
muxStats?.videoChange(CustomerVideoData().apply { | ||
videoTitle = "Big Buck Bunny (Third)" | ||
}) | ||
} else { | ||
Log.d(TAG, "calling enable()") | ||
muxStats?.enable(CustomerData().apply { | ||
customerVideoData = CustomerVideoData().apply { | ||
videoTitle = "Big Buck Bunny (Third)" | ||
} | ||
}) | ||
} | ||
Log.d(TAG, "About to prepare the player. The current state is ${newPlayer.playbackState}") | ||
newPlayer.prepare() | ||
Log.d(TAG, "Just called prepare on the player. The current state is ${newPlayer.playbackState}") | ||
newPlayer.play() | ||
// debugging: Maybe try calling enable() _after_ | ||
|
||
delay(10_000) | ||
Log.w(TAG, "test over") | ||
muxStats?.disable() | ||
} | ||
} | ||
} | ||
|
||
private fun createMediaItem(mediaUrl: String): MediaItem { | ||
return mediaUrl.toMediaItem().buildUpon() | ||
.setMediaMetadata( | ||
MediaMetadata.Builder() | ||
.setTitle("Sample app, BasicPlayerActivity") | ||
.setDescription("A Basic test video") | ||
.build() | ||
).build() | ||
} | ||
|
||
private fun stopPlaying() { | ||
player?.let { oldPlayer -> | ||
oldPlayer.stop() | ||
oldPlayer.release() | ||
} | ||
// Make sure to release() your muxStats whenever the user is done with the player | ||
muxStats?.release() | ||
} | ||
|
||
private fun monitorPlayer(player: ExoPlayer): MuxStatsSdkMedia3<ExoPlayer> { | ||
// You can add your own data to a View, which will override any data we collect | ||
val customerData = CustomerData( | ||
CustomerPlayerData().apply { }, | ||
CustomerVideoData().apply { | ||
videoId = "A Custom ID" | ||
videoTitle = "Sintel (First)" | ||
}, | ||
CustomerViewData().apply { } | ||
) | ||
|
||
return player.monitorWithMuxData( | ||
context = this, | ||
envKey = Constants.MUX_DATA_ENV_KEY, | ||
customerData = customerData, | ||
playerView = view.playerView, | ||
logLevel = MuxDataSdk.LogcatLevel.DEBUG, | ||
) | ||
} | ||
|
||
private fun createPlayer(): ExoPlayer { | ||
return ExoPlayer.Builder(this) | ||
.build().apply { | ||
addListener(object : Player.Listener { | ||
override fun onPlayerError(error: PlaybackException) { | ||
Log.e(javaClass.simpleName, "player error!", error) | ||
Toast.makeText(this@PlayerReuseActivity, error.localizedMessage, Toast.LENGTH_SHORT) | ||
.show() | ||
} | ||
}) | ||
} | ||
} | ||
|
||
companion object { | ||
const val EXTRA_URL: String = "com.mux.video.url" | ||
const val TAG = "PlayerReuseActivity" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters