fix(external player): Fix crash + add subs (#1162)

This commit is contained in:
Secozzi 2023-10-16 22:45:23 +00:00 committed by GitHub
parent 9e2244c0e5
commit 63e95d9cbc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 19 deletions

View file

@ -2,6 +2,7 @@ package eu.kanade.tachiyomi.ui.main
import android.animation.ValueAnimator import android.animation.ValueAnimator
import android.app.Activity import android.app.Activity
import android.app.Application
import android.app.SearchManager import android.app.SearchManager
import android.app.assist.AssistContent import android.app.assist.AssistContent
import android.content.Context import android.content.Context
@ -108,6 +109,7 @@ import kotlinx.coroutines.flow.launchIn
import kotlinx.coroutines.flow.onEach import kotlinx.coroutines.flow.onEach
import kotlinx.coroutines.launch import kotlinx.coroutines.launch
import logcat.LogPriority import logcat.LogPriority
import tachiyomi.core.util.lang.withUIContext
import tachiyomi.core.util.system.logcat import tachiyomi.core.util.system.logcat
import tachiyomi.domain.library.service.LibraryPreferences import tachiyomi.domain.library.service.LibraryPreferences
import tachiyomi.presentation.core.components.material.Scaffold import tachiyomi.presentation.core.components.material.Scaffold
@ -523,7 +525,14 @@ class MainActivity : BaseActivity() {
suspend fun startPlayerActivity(context: Context, animeId: Long, episodeId: Long, extPlayer: Boolean, video: Video? = null) { suspend fun startPlayerActivity(context: Context, animeId: Long, episodeId: Long, extPlayer: Boolean, video: Video? = null) {
if (extPlayer) { if (extPlayer) {
externalPlayerResult?.launch(ExternalIntents.newIntent(context, animeId, episodeId, video)) ?: return val intent = try {
ExternalIntents.newIntent(context, animeId, episodeId, video)
} catch (e: Exception) {
logcat(LogPriority.ERROR, e)
withUIContext { Injekt.get<Application>().toast(e.message) }
return
}
externalPlayerResult?.launch(intent) ?: return
} else { } else {
context.startActivity(PlayerActivity.newIntent(context, animeId, episodeId)) context.startActivity(PlayerActivity.newIntent(context, animeId, episodeId))
} }

View file

@ -31,6 +31,7 @@ import kotlinx.coroutines.DelicateCoroutinesApi
import kotlinx.coroutines.async import kotlinx.coroutines.async
import kotlinx.coroutines.awaitAll import kotlinx.coroutines.awaitAll
import kotlinx.coroutines.flow.first import kotlinx.coroutines.flow.first
import kotlinx.coroutines.flow.firstOrNull
import logcat.LogPriority import logcat.LogPriority
import tachiyomi.core.util.lang.launchIO import tachiyomi.core.util.lang.launchIO
import tachiyomi.core.util.lang.withIOContext import tachiyomi.core.util.lang.withIOContext
@ -77,7 +78,9 @@ class ExternalIntents {
source = sourceManager.get(anime.source) ?: return null source = sourceManager.get(anime.source) ?: return null
episode = getEpisodeByAnimeId.await(anime.id).find { it.id == episodeId } ?: return null episode = getEpisodeByAnimeId.await(anime.id).find { it.id == episodeId } ?: return null
val video = chosenVideo ?: EpisodeLoader.getLinks(episode, anime, source).asFlow().first()[0] val video = chosenVideo
?: EpisodeLoader.getLinks(episode, anime, source).asFlow().first().firstOrNull()
?: throw Exception("Video list is empty")
val videoUrl = getVideoUrl(context, video) ?: return null val videoUrl = getVideoUrl(context, video) ?: return null
@ -218,26 +221,20 @@ class ExternalIntents {
// Add support for Subtitles to external players // Add support for Subtitles to external players
/* val localLangName = LocaleHelper.getSimpleLocaleDisplayName()
val externalSubs = source.getExternalSubtitleStreams() val langIndex = video.subtitleTracks.indexOfFirst {
val enabledSubUrl = when { it.lang.contains(localLangName)
source.selectedSubtitleStream != null -> {
externalSubs.find { stream -> stream.index == source.selectedSubtitleStream?.index }?.let { sub ->
apiClient.createUrl(sub.deliveryUrl)
}
}
else -> null
} }
val requestedLanguage = if (langIndex == -1) 0 else langIndex
val requestedUrl = video.subtitleTracks.getOrNull(requestedLanguage)?.url
// MX Player API / MPV // Just, Next, MX Player, mpv
putExtra("subs", externalSubs.map { stream -> Uri.parse(apiClient.createUrl(stream.deliveryUrl)) }.toTypedArray()) putExtra("subs", video.subtitleTracks.map { Uri.parse(it.url) }.toTypedArray())
putExtra("subs.name", externalSubs.map(ExternalSubtitleStream::displayTitle).toTypedArray()) putExtra("subs.name", video.subtitleTracks.map { it.lang }.toTypedArray())
putExtra("subs.filename", externalSubs.map(ExternalSubtitleStream::language).toTypedArray()) putExtra("subs.enable", requestedUrl?.let { arrayOf(Uri.parse(it)) } ?: emptyArray())
putExtra("subs.enable", enabledSubUrl?.let { url -> arrayOf(Uri.parse(url)) } ?: emptyArray())
// VLC // VLC - seems to only work for local sub files
if (enabledSubUrl != null) putExtra("subtitles_location", enabledSubUrl) requestedUrl?.let { putExtra("subtitles_location", it) }
*/
} }
} }