Recordings Manage pocket-recorder audio and transcripts.
@if ($pendingCount > 0) Queue {{ $pendingCount }} pending {{ $pendingCount === 1 ? 'transcription' : 'transcriptions' }} @endif @if ($totalCount > 0) Delete all @endif
@if ($totalCount > 0)
Delete all recordings? This permanently removes {{ $totalCount === 1 ? 'your 1 recording' : "all {$totalCount} recordings" }} and their audio files. This cannot be undone.
Cancel Delete all
@endif @if ($recordings->isEmpty()) @if (filled($search)) No recordings match “{{ $search }}”.
Clear search
@else @endif @else Title Duration Words Status Uploaded @foreach ($recordings as $recording)
{{ $recording->title }} @if ($preview = $recording->transcriptFirstLine()) {{ $preview }} @endif
{{ $recording->duration_formatted }} {{ $recording->word_count > 0 ? number_format($recording->word_count) : '—' }} @if ($recording->transcription_status === 'pending' && filled($recording->transcription_progress))
{{ $recording->transcription_progress }}
@elseif ($recording->transcription_status === 'processing' && filled($recording->transcription_progress))
@if ($recording->transcription_percent) {{ $recording->transcription_percent }}% · @endif {{ $recording->transcription_progress }}
@endif
{{ $recording->created_at?->format('Y-m-d H:i') }}
Delete recording? This permanently removes “{{ $recording->title }}” and its audio file.
Cancel Delete
@endforeach
@endif