This commit is contained in:
KevinB-T 2026-05-19 11:00:17 +05:30
parent 25f80d4a81
commit 3abb5e9281

View File

@ -286,7 +286,7 @@ function RecordPage() {
<p className="text-sm text-primary">LIVE CAPTURE</p>
<h1 className="mt-2 font-display text-3xl font-semibold">Record</h1>
<p className="mt-1 text-sm text-muted-foreground">
Capture meetings live, transcribe through Faster Whisper, and send the result securely.
Capture meetings live, generate transcripts, and send the result securely.
</p>
</header>
@ -352,10 +352,8 @@ function RecordPage() {
{isBusy && (
<div className="w-full max-w-md">
<div className="mb-2 flex justify-between text-xs text-muted-foreground">
<span>
{phase === "uploading" ? "Uploading audio" : "Processing with Faster Whisper"}
</span>
<span>{phase === "uploading" ? `${uploadProgress}%` : "large-v3"}</span>
<span>{phase === "uploading" ? "Uploading audio" : "Transcribing audio"}</span>
<span>{phase === "uploading" ? `${uploadProgress}%` : "In progress"}</span>
</div>
<div className="h-2 overflow-hidden rounded-full bg-secondary">
<motion.div