Skip to main content

live-transcribe

Start real-time microphone transcription using ElevenLabs Scribe v2 Realtime. Use when user wants to start live transcription, dictation, or real-time speech capture. Triggers on: 'תתחיל תמלול', 'תמלל בזמן אמת', 'start transcribing', 'live transcribe', 'הקלט מה שאני אומר'. After starting, tell user they can say 'אוקי זה מספיק בוא נעצור את התמלול' to stop, or use /live-transcribe-stop.

설치로 이동

소스 정보

저장소
aviz85/claude-skills-library
최근 소스 활동
2026년 5월 26일 15:03
감지된 SKILL.md 언어
영어
스타
49
포크
14

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
live-transcribe
description
Start real-time microphone transcription using ElevenLabs Scribe v2 Realtime. Use when user wants to start live transcription, dictation, or real-time speech capture. Triggers on: 'תתחיל תמלול', 'תמלל בזמן אמת', 'start transcribing', 'live transcribe', 'הקלט מה שאני אומר'. After starting, tell user they can say 'אוקי זה מספיק בוא נעצור את התמלול' to stop, or use /live-transcribe-stop.
# Live Transcribe — Start Start real-time microphone transcription. The script captures audio, streams to ElevenLabs Scribe v2 Realtime via WebSocket, and writes committed text to a temp file continuously. ## Start command ```bash source ~/.claude/skills/transcribe/scripts/.env && \ ELEVENLABS_API_KEY="$ELEVENLABS_API_KEY" \ nohup python3 ~/.claude/scripts/realtime-transcribe.py > /tmp/realtime-transcribe.log 2>&1 & ``` Wait ~4 seconds, then read the first line of `/tmp/realtime-transcribe.log` for the startup JSON: ```json {"status": "started", "pid": 12345, "output_file": "/tmp/transcribe-20260526-143022.txt", ...} ``` ## Before starting Check if one is already running: ```bash test -f /tmp/realtime-transcribe.pid && kill -0 $(cat /tmp/realtime-transcribe.pid) 2>/dev/null && echo "ALREADY RUNNING" ``` If already running, tell the user and offer to stop first. ## What to tell the user 1. Transcription is running 2. The output file path 3. Ways to stop: say "אוקי, זה מספיק, בוא נעצור את התמלול", or ask the agent to stop, or `/live-transcribe-stop` 4. They can ask to read the transcript anytime ## Audio cues Pre-recorded sounds play automatically: - **Start:** "התחלתי תמלול!" (before recording begins) - **Stop:** "סיימתי את התמלול." (after recording ends) - **Reminder:** "אני עדיין מתמלל." (every 30 minutes)
GitHub에서 보기