Add transcription progress handling and local Whisper integration.

Implement a new method for calculating elapsed transcription time in the Recording model. Enhance the TranscriptionService to handle local Whisper requests, including asynchronous processing and progress reporting. Update the recordings index view to display transcription progress percentage. Add unit tests for the new transcription service functionality.
This commit is contained in:
ben
2026-08-13 12:12:10 +02:00
parent a1bddca2dd
commit 5cea5192c2
6 changed files with 239 additions and 10 deletions
+1
View File
@@ -126,6 +126,7 @@ class IndexTest extends TestCase
Livewire::test(Index::class)
->assertSee('wire:poll', false)
->assertSee('Transcribing')
->assertSee('40%')
->assertDontSee('Transcribing locally…')
->assertSeeHtml('bg-amber-400');
}