xiaoyuzhou-transcribe
Installation
SKILL.md
Xiaoyuzhou Transcribe
Overview
Generate SRT and TXT transcripts from a Xiaoyuzhou episode URL by downloading the audio and running faster-whisper locally. Use the bundled script to keep the workflow deterministic and repeatable.
Quick Start
- Install dependency:
python3 -m pip install -U faster-whisper - Run:
python3 scripts/xiaoyuzhou_transcribe.py "<episode-url>" --output-dir . - Expect outputs:
xiaoyuzhou-<eid>.mp3,xiaoyuzhou-<eid>.srt,xiaoyuzhou-<eid>.txt
Workflow
- Fetch the episode page and parse
__NEXT_DATA__to locate the audio URL. - Download the audio (resume supported) unless
--audio-pathis provided. - Transcribe audio with faster-whisper and write SRT + TXT.