Quick StartΒΆ
Get from zero to an edited file in under 2 minutes.
1. InstallΒΆ
Offline / local Whisper
2. Edit a podcastΒΆ
What this does:
sequenceDiagram
participant You
participant CLI
participant Whisper
participant FFmpeg
You->>CLI: edit podcast.mp3
CLI->>Whisper: transcribe (word-level)
Whisper-->>CLI: words + timestamps
CLI->>CLI: detect fillers Β· repetitions Β· silences
CLI->>FFmpeg: render keep-only segments
FFmpeg-->>You: podcast_edited.mp3 β
3. Common recipesΒΆ
4. Output filesΒΆ
After edit, you get:
podcast_edited.mp3 β edited audio
~/.praisonai/editor/podcast/
βββ probe.json β media metadata
βββ transcript.json β word timestamps (cached)
βββ transcript.srt β subtitles
βββ transcript.txt β plain text
βββ plan.json β edit decisions
βββ content_blocks.json β detection blocks (if --detector)
Transcript cache
Second run reuses transcript.json β no API call needed.