blitzreels 0.1.2 → 0.1.3

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
@@ -62,7 +62,8 @@ blitzreels media import-youtube --url "https://www.youtube.com/watch?v=..."
62
62
  blitzreels media rename --asset-id ASSET_ID --name "New media name"
63
63
  blitzreels media update --asset-id ASSET_ID --description "B-roll" --folder-id FOLDER_ID
64
64
  blitzreels media move --asset-id ASSET_ID --target-folder-id FOLDER_ID
65
- blitzreels media attach --project-id PROJECT_ID --asset-id ASSET_ID --at 0
65
+ blitzreels media attach --project-id PROJECT_ID --asset-id ASSET_ID --at 0 --duration 4
66
+ blitzreels media attach --project-id PROJECT_ID --asset-id IMAGE_ID --at 6 --duration 1.6 --position-preset center --position-y -230 --width-px 561 --height-px 212 --animation-preset popIn
66
67
  blitzreels media folders list --json
67
68
  blitzreels media folders create --name "B-roll" --icon-type video
68
69
  blitzreels media folders rename --folder-id FOLDER_ID --name "New folder name"
@@ -74,13 +75,27 @@ blitzreels project timeline --project-id PROJECT_ID --json
74
75
  blitzreels project snapshot --project-id PROJECT_ID --at 00:03
75
76
  blitzreels project snapshots --project-id PROJECT_ID --at 00:01,00:03
76
77
 
78
+ blitzreels timeline transform --project-id PROJECT_ID --timeline-item-id TIMELINE_ITEM_ID --position-x 0 --position-y -230 --width-px 561 --height-px 212 --keep-aspect-ratio true
79
+ blitzreels timeline move --project-id PROJECT_ID --timeline-item-id TIMELINE_ITEM_ID --at 00:06 --layer-index 2
80
+ blitzreels timeline delete --project-id PROJECT_ID --timeline-item-id TIMELINE_ITEM_ID --auto-pack false
81
+
77
82
  blitzreels text add --project-id PROJECT_ID --text "Hook" --at 0 --duration 4
83
+ blitzreels text add --project-id PROJECT_ID --text "SERVEURS MCP" --at 24.33 --duration 2.8 --font-family Pacifico --font-size 82 --color "#17FFA6" --background-color "rgba(3,7,18,0.82)" --top "24%"
78
84
  blitzreels text list --project-id PROJECT_ID --json
79
- blitzreels text update --project-id PROJECT_ID --content-item-id CONTENT_ITEM_ID --text "New hook"
85
+ blitzreels text update --project-id PROJECT_ID --content-item-id CONTENT_ITEM_ID --text "New hook" --font-family Inter --font-size 64 --color "#FFFFFF"
80
86
  blitzreels text remove --project-id PROJECT_ID --content-item-id CONTENT_ITEM_ID
81
87
 
82
88
  blitzreels audio add --project-id PROJECT_ID --asset-id ASSET_ID --at 0 --volume 0.6
83
89
 
90
+ blitzreels captions words list --project-id PROJECT_ID --match-text "Supabase" --json
91
+ blitzreels captions words text --project-id PROJECT_ID --word-id WORD_ID --text "Supabase"
92
+ blitzreels captions words batch-text --project-id PROJECT_ID --updates-json '[{"word_id":"WORD_ID","new_text":"Supabase"}]'
93
+ blitzreels captions words style --project-id PROJECT_ID --word-id WORD_ID --font-family Pacifico --color "#17FFA6" --scale 1.45
94
+ blitzreels captions words emphasis --project-id PROJECT_ID --match-text "MCP" --emphasis true
95
+ blitzreels captions words delete --project-id PROJECT_ID --word-id WORD_ID
96
+ blitzreels captions words merge --project-id PROJECT_ID --word-ids WORD_ID_1,WORD_ID_2 --text "serveurs MCP"
97
+ blitzreels captions words split --project-id PROJECT_ID --word-id WORD_ID --words "serveurs,MCP"
98
+
84
99
  blitzreels silence plan --project-id PROJECT_ID --timeline-item-id TIMELINE_ITEM_ID --json
85
100
  blitzreels silence apply --project-id PROJECT_ID --timeline-item-id TIMELINE_ITEM_ID --confirm-preview
86
101
 
@@ -100,3 +115,31 @@ blitzreels api spec
100
115
  ```
101
116
 
102
117
  Use `--json` for script and AI-agent workflows.
118
+
119
+ ## Faulty Commands
120
+
121
+ The CLI validates commands and flags before making API calls. Faulty commands
122
+ print the closest known command or flag, then the command-specific usage.
123
+
124
+ ```bash
125
+ blitzreels caption words list --project-id PROJECT_ID
126
+ # Unknown command: caption words list
127
+ # Did you mean?
128
+ # blitzreels captions words list --project-id ID ...
129
+ ```
130
+
131
+ With `--json`, errors are structured on stderr:
132
+
133
+ ```json
134
+ {
135
+ "error": {
136
+ "code": "unknown_flag",
137
+ "message": "Unknown flag --poject-id for `projects get`.",
138
+ "suggestions": ["--project-id"],
139
+ "usage": "blitzreels projects get --project-id ID [--json]"
140
+ }
141
+ }
142
+ ```
143
+
144
+ Use `blitzreels <command> --help` for command-specific flags without requiring
145
+ auth.