0.4.0 - video and audio corpus support #193
safishamsi
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
graphify now supports video and audio files as corpus inputs.
Drop
.mp4,.mp3,.wav,.mov,.webm,.m4a,.ogg,.mkv,.avi, or.m4vfiles into any folder and graphify transcribes them locally with faster-whisper before extraction. Transcripts are cached ingraphify-out/transcripts/so re-runs skip already-transcribed files.You can also add YouTube links directly:
yt-dlp downloads audio-only (no video stream, much smaller) and the same Whisper pipeline picks it up from there.
The Whisper prompt is built from your corpus automatically. The coding agent reads the top god nodes from your non-video files and writes a one-sentence domain hint for Whisper itself. No separate API call, no configuration needed.
To use it:
This installs faster-whisper and yt-dlp. The default Whisper model is
base. Pass--whisper-model mediumor--whisper-model large-v3if you need higher accuracy.Audio never leaves your machine. Transcription runs fully locally.
Released as part of v4 (0.4.0).
All reactions