vidistill 0.4.3 → 0.4.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -81,7 +81,6 @@ vidistill-output/my-video/
81
81
  ├── prereqs.md # prerequisite knowledge (when detected)
82
82
  ├── timeline.html # interactive visual timeline
83
83
  ├── metadata.json # processing metadata
84
- ├── progress.json # resume checkpoint (during processing)
85
84
  └── raw/ # raw pass outputs
86
85
  ```
87
86
 
@@ -89,9 +88,9 @@ Which files are generated depends on the video content — a coding tutorial get
89
88
 
90
89
  ### Speaker Naming
91
90
 
92
- When multiple speakers are detected, vidistill prompts you to assign real names after processing. Names replace generic labels (SPEAKER_00, SPEAKER_01) in all output files. If duplicate names are detected, you'll be prompted to merge them.
91
+ When multiple speakers are detected, use `rename-speakers` to assign real names. Names replace generic labels (SPEAKER_00, SPEAKER_01) in all output files.
93
92
 
94
- To rename speakers after the fact:
93
+ To rename speakers:
95
94
 
96
95
  ```bash
97
96
  # Interactive rename — prompts for each speaker
@@ -107,10 +106,6 @@ vidistill rename-speakers ./vidistill-output/my-meeting/ --rename "Steven Kang"
107
106
  vidistill rename-speakers ./vidistill-output/my-meeting/ --merge "K Iphone" "Kristian"
108
107
  ```
109
108
 
110
- ### Resume
111
-
112
- If a run is interrupted (Ctrl+C), progress is saved automatically. Re-running the same command detects the incomplete run and offers to resume from where it left off.
113
-
114
109
  ## How It Works
115
110
 
116
111
  Supported video formats: MP4, MOV, WebM, MKV, AVI, MPEG, FLV, WMV, 3GPP. Supported audio formats: MP3, AAC, WAV, FLAC, OGG, M4A.
package/dist/index.js CHANGED
@@ -5095,7 +5095,7 @@ async function run2(args) {
5095
5095
  }
5096
5096
 
5097
5097
  // src/cli/index.ts
5098
- var version = "0.4.3";
5098
+ var version = "0.4.4";
5099
5099
  var DEFAULT_OUTPUT = "./vidistill-output/";
5100
5100
  var SUBCOMMANDS = {
5101
5101
  mcp: run,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vidistill",
3
- "version": "0.4.3",
3
+ "version": "0.4.4",
4
4
  "description": "Video intelligence distiller — extract structured notes, transcripts, and insights from any video using Gemini",
5
5
  "type": "module",
6
6
  "license": "MIT",