Transcribe audio files to text using audinota cli
Transcribes audio files to text using the audinota CLI tool. Claude will use this when audio files need transcription, either from the default path created by youtube-video-to-audio or any specified audio file path.
/plugin marketplace add MacHu-GWU/sanhe-claude-code-plugins/plugin install youtube@sanhe-claude-code-pluginsThis skill inherits all available tools. When active, it can use any tool Claude has access to.
scripts/transcribe_audio.pyConvert audio files to text using audinota transcription service.
# Use default audio file (output from youtube-video-to-audio skill)
python scripts/transcribe_audio.py
# Specify custom audio file
python scripts/transcribe_audio.py --audio-file-path "/path/to/audio.mp3"
--audio-file-path - Path to audio file to transcribe (default: ~/tmp/download_audio_result.mp3)# Transcribe default audio file
python scripts/transcribe_audio.py
# Transcribe custom audio file
python scripts/transcribe_audio.py --audio-file-path "~/Music/podcast.mp3"
# Get help
python scripts/transcribe_audio.py -h
~/Documents/GitHub/audinota-project/.venv/bin/audinotaThis skill works seamlessly with the youtube-video-to-audio skill. By default, it transcribes the audio file downloaded by that skill at ~/tmp/download_audio_result.mp3.