Skip to content

plan β€” Preview the edit planΒΆ

See what would be removed before actually editing the file.

UsageΒΆ

praisonai-editor plan INPUT [OPTIONS]

OptionsΒΆ

Option Short Default Description
INPUT Media file to plan
--output -o stdout Save plan as JSON
--preset -p podcast Edit preset
--local False Use local Whisper

ExamplesΒΆ

praisonai-editor plan podcast.mp3 --preset podcast
{
  "original_duration": 1823.4,
  "edited_duration": 1680.2,
  "removed_duration": 143.2,
  "removal_summary": {
    "filler": 12.3,
    "repetition": 8.1,
    "silence": 122.8
  }
}
praisonai-editor plan podcast.mp3 --output plan.json

Plan structureΒΆ

flowchart TD
    A[Transcript] --> B[Detect fillers]
    A --> C[Detect repetitions]
    A --> D[Detect silences]
    B --> E[Merge overlapping]
    C --> E
    D --> E
    E --> F[Build keep/remove segments]
    F --> G[EditPlan JSON]

No file is modified

plan only analyzes and outputs JSON β€” your file stays untouched.