1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223
|
import { useEffect, useRef, useCallback } from 'react' import { useAudiobookStore } from '../store/useAudiobookStore' import { extractSentences, type SentenceItem, } from '../utils/textSplitter' import { markSentencesInDOM, highlightSentence, clearAllMarks, isSentenceInViewport, } from '../utils/domMarker'
const PREBUFFER_SIZE = 5 const SAVE_INTERVAL = 5000
export function useAudiobook( rendition: any, book: any, viewerRef: React.RefObject<HTMLDivElement>, bookPath: string ) { const audioRef = useRef<HTMLAudioElement | null>(null) const saveTimerRef = useRef<ReturnType<typeof setInterval>>() const storeRef = useRef(useAudiobookStore.getState())
useEffect(() => { return useAudiobookStore.subscribe(s => { storeRef.current = s }) }, [])
useEffect(() => { const audio = new Audio() audioRef.current = audio return () => { audio.pause() audioRef.current = null } }, [])
const startReading = useCallback(async () => { const store = useAudiobookStore.getState() const doc = rendition?.getContents()?.[0]?.document as Document | undefined if (!doc) return
const sentences = extractSentences(doc) if (sentences.length === 0) return
markSentencesInDOM(doc, sentences)
store.setSentences(sentences) store.setIsActive(true) store.setIsPlaying(true)
const progress = store.currentProgress const startIdx = progress?.sentenceIndex ?? 0
await prebufferRange(startIdx, Math.min(startIdx + PREBUFFER_SIZE, sentences.length)) }, [rendition, bookPath])
const prebufferRange = useCallback(async (fromIdx: number, toIdx: number) => { const store = useAudiobookStore.getState() const { sentences, voiceEngineId, voiceId, speed } = store
for (let i = fromIdx; i < toIdx && i < sentences.length; i++) { const sentence = sentences[i] if (!sentence || sentence.audioStatus !== 'pending') continue
store.updateSentenceStatus(i, 'synthesizing')
try { const result = await window.api.tts.speak(sentence.text, { engineId: voiceEngineId, voiceId: voiceId, speed: speed, })
if (result.success && result.filePath) { store.addAudioChunk({ sentenceIdx: i, audioUrl: result.filePath, duration: result.duration ?? 0 }) store.updateSentenceStatus(i, 'ready') } } catch (e) { console.warn(`[Audiobook] 合成句子 ${i} 失败:`, e) store.updateSentenceStatus(i, 'failed') } } }, [])
const playLoop = useCallback(async () => { const audio = audioRef.current if (!audio) return
const store = useAudiobookStore.getState() const { sentences, audioQueue } = store
for (let i = store.currentSentenceIdx; i < sentences.length; i++) { const remainingReady = audioQueue.filter( c => c.sentenceIdx >= i && c.sentenceIdx < i + PREBUFFER_SIZE ).length if (remainingReady < 3) { prebufferRange(i + PREBUFFER_SIZE - remainingReady, i + PREBUFFER_SIZE) }
let chunk = audioQueue.find(c => c.sentenceIdx === i) while (!chunk) { await new Promise(r => setTimeout(r, 200)) chunk = audioQueue.find(c => c.sentenceIdx === i) }
store.setCurrentSentenceIdx(i) await playAudioUrl(audio, chunk.audioUrl, store.speed)
const doc = rendition.getContents()?.[0]?.document if (doc) { highlightSentence(doc, i)
if (viewerRef.current && !isSentenceInViewport(doc, i, viewerRef.current)) { await rendition.next() } }
store.updateProgress(i) } }, [rendition, viewerRef, prebufferRange])
const playAudioUrl = useCallback(( audio: HTMLAudioElement, url: string, speed: number ): Promise<void> => { return new Promise((resolve) => { audio.src = url audio.playbackRate = speed audio.onended = () => resolve() audio.onerror = () => resolve() audio.play().catch(() => resolve()) }) }, [])
useEffect(() => { if (!rendition) return const handler = (loc: any) => { const store = useAudiobookStore.getState() if (!store.isActive) return
setTimeout(() => { const doc = rendition.getContents()?.[0]?.document as Document | undefined if (!doc) return
const sentences = extractSentences(doc) markSentencesInDOM(doc, sentences) store.appendSentences(sentences)
highlightSentence(doc, store.currentSentenceIdx) }, 200) } rendition.on('relocated', handler) return () => { rendition.off?.('relocated', handler) } }, [rendition])
useEffect(() => { saveTimerRef.current = setInterval(() => { const { isActive, currentSentenceIdx, sentences } = useAudiobookStore.getState() if (!isActive) return persistProgress(currentSentenceIdx) }, SAVE_INTERVAL) return () => { if (saveTimerRef.current) clearInterval(saveTimerRef.current) } }, [])
return { startReading, playLoop } }
async function persistProgress(sentenceIdx: number): Promise<void> { const store = useAudiobookStore.getState() try { await window.api.db.run( `INSERT OR REPLACE INTO audiobook_progress (book_path, cfi, sentence_index, voice_engine_id, voice_id, speed, updated_at) VALUES (?, ?, ?, ?, ?, ?, ?)`, [ store.currentBookPath, store.currentCfi, sentenceIdx, store.voiceEngineId, store.voiceId, store.speed, Date.now(), ] ) } catch { } }
|
评论