Transcribe the video or audio at $ARGUMENTS.
Instructions
- Run the transcription script:
python3 ~/.claude/skills/transcribe/transcribe_video.py "$ARGUMENTS" - The script will:
- For YouTube URLs: Download the audio using yt-dlp, then transcribe
- For local files: Transcribe directly (supports mp4, mp3, wav, m4a, etc.)
- Save a timestamped transcript to
~/content/transcripts/transcript_<id>.txt
- After the script finishes, read the saved transcript file from
~/content/transcripts/and present the full contents to the user. - If the script fails, check:
- Is
OPENAI_API_KEYset in the environment? - Is
yt-dlpinstalled? (only needed for YouTube URLs) - For local files: Does the file exist? Is it under 25MB?
- For YouTube: Is the URL valid and publicly accessible?
- Is