朗读用exoPlayer

pull/1660/head
kunfei 3 years ago
parent a3424402d4
commit 628f2d22f0
  1. 14
      app/src/main/java/io/legado/app/service/HttpReadAloudService.kt

@ -43,7 +43,6 @@ class HttpReadAloudService : BaseReadAloudService(),
} }
private val cacheFiles = hashSetOf<String>() private val cacheFiles = hashSetOf<String>()
private var task: Coroutine<*>? = null private var task: Coroutine<*>? = null
private var playingIndex = -1
private var playIndexJob: Job? = null private var playIndexJob: Job? = null
private val mutex = Mutex() private val mutex = Mutex()
@ -58,12 +57,8 @@ class HttpReadAloudService : BaseReadAloudService(),
exoPlayer.release() exoPlayer.release()
} }
override fun newReadAloud(play: Boolean) {
playingIndex = -1
super.newReadAloud(play)
}
override fun play() { override fun play() {
exoPlayer.stop()
if (contentList.isEmpty()) { if (contentList.isEmpty()) {
AppLog.putDebug("朗读列表为空") AppLog.putDebug("朗读列表为空")
ReadBook.readAloud() ReadBook.readAloud()
@ -213,7 +208,7 @@ class HttpReadAloudService : BaseReadAloudService(),
@Synchronized @Synchronized
private fun playAudio(file: File) { private fun playAudio(file: File) {
if (playingIndex != nowSpeak && requestFocus()) { if (requestFocus()) {
launch { launch {
kotlin.runCatching { kotlin.runCatching {
val mediaItem = MediaItem.fromUri(Uri.fromFile(file)) val mediaItem = MediaItem.fromUri(Uri.fromFile(file))
@ -288,14 +283,10 @@ class HttpReadAloudService : BaseReadAloudService(),
override fun resumeReadAloud() { override fun resumeReadAloud() {
super.resumeReadAloud() super.resumeReadAloud()
kotlin.runCatching { kotlin.runCatching {
if (playingIndex == -1) {
play()
} else {
exoPlayer.play() exoPlayer.play()
upPlayPos() upPlayPos()
} }
} }
}
private fun upPlayPos() { private fun upPlayPos() {
playIndexJob?.cancel() playIndexJob?.cancel()
@ -328,7 +319,6 @@ class HttpReadAloudService : BaseReadAloudService(),
override fun upSpeechRate(reset: Boolean) { override fun upSpeechRate(reset: Boolean) {
task?.cancel() task?.cancel()
exoPlayer.stop() exoPlayer.stop()
playingIndex = -1
downloadAudio() downloadAudio()
} }

Loading…
Cancel
Save