-
Notifications
You must be signed in to change notification settings - Fork 296
Expand file tree
/
Copy pathtoolkit-registry.json
More file actions
1126 lines (1126 loc) · 36.8 KB
/
Copy pathtoolkit-registry.json
File metadata and controls
1126 lines (1126 loc) · 36.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "claude-code-video-toolkit",
"version": "0.17.0",
"description": "AI-native video production workspace for Claude Code",
"repository": "https://github.com/digitalsamba/claude-code-video-toolkit",
"skills": {
"remotion-official": {
"path": ".claude/skills/remotion-official/",
"description": "Official Remotion framework knowledge (synced from remotion-dev/skills)",
"status": "stable",
"upstream": "https://github.com/remotion-dev/skills",
"created": "2026-02-19",
"updated": "2026-02-19"
},
"remotion": {
"path": ".claude/skills/remotion/",
"description": "Toolkit-specific Remotion patterns — custom transitions, shared components, conventions",
"status": "stable",
"created": "2025-12-04",
"updated": "2026-02-19"
},
"elevenlabs": {
"path": ".claude/skills/elevenlabs/",
"description": "ElevenLabs audio - TTS, voice cloning, music, SFX",
"status": "stable",
"created": "2025-12-04",
"updated": "2025-12-04"
},
"ffmpeg": {
"path": ".claude/skills/ffmpeg/",
"description": "FFmpeg video/audio processing for Remotion assets",
"status": "beta",
"created": "2025-12-08",
"updated": "2025-12-09"
},
"playwright-recording": {
"path": ".claude/skills/playwright-recording/",
"description": "Playwright browser recording for demo videos",
"status": "beta",
"created": "2025-12-08",
"updated": "2025-12-10"
},
"frontend-design": {
"path": ".claude/skills/frontend-design/",
"description": "Visual design refinement for distinctive, production-grade aesthetics",
"status": "stable",
"created": "2025-12-10",
"updated": "2025-12-13"
},
"qwen-edit": {
"path": ".claude/skills/qwen-edit/",
"description": "AI image editing prompting patterns and best practices for Qwen-Image-Edit",
"status": "stable",
"category": "image-editing",
"backend": "qwen-image-edit-2511",
"created": "2026-01-03",
"updated": "2026-01-05"
},
"runpod": {
"path": ".claude/skills/runpod/",
"description": "Cloud GPU setup, Docker images, endpoint management, troubleshooting",
"status": "stable",
"created": "2026-02-23",
"updated": "2026-02-24"
},
"acestep": {
"path": ".claude/skills/acestep/",
"description": "AI music generation — prompt engineering, scene presets, lyrics formatting, video production integration",
"status": "beta",
"created": "2026-03-22",
"updated": "2026-03-22"
},
"ltx2": {
"path": ".claude/skills/ltx2/",
"description": "AI video generation — prompting guide, parameters, video production use cases (b-roll, animated slides, portraits)",
"status": "beta",
"created": "2026-03-25",
"updated": "2026-04-08"
},
"moviepy": {
"path": ".claude/skills/moviepy/",
"description": "Python video composition with moviepy 2.x — overlaying text on LTX-2/SadTalker output, single-file build.py video projects",
"status": "beta",
"created": "2026-04-08",
"updated": "2026-04-08"
},
"ideogram4": {
"path": ".claude/skills/ideogram4/",
"description": "Prompting patterns for Ideogram 4 text-to-image — structured JSON captions for best-in-class in-image text, color-palette and bounding-box layout control (title cards, thumbnails, CTAs)",
"status": "beta",
"category": "image-generation",
"backend": "ideogram-4 hosted v4 API (json_prompt)",
"note": "Skill teaches the JSON caption format; Claude is the magic-prompt expander. Tool: tools/ideogram4.py. Hosted paid API (commercial license, ~$0.03–0.09/img); not self-hosted. Needs IDEOGRAM_API_KEY.",
"created": "2026-06-08",
"updated": "2026-06-08"
}
},
"commands": {
"video": {
"path": ".claude/commands/video.md",
"description": "Video projects - list, resume, or create new",
"status": "stable",
"created": "2025-12-09",
"updated": "2025-12-09"
},
"brand": {
"path": ".claude/commands/brand.md",
"description": "Brand profiles - list, edit, or create new",
"status": "stable",
"created": "2025-12-09",
"updated": "2025-12-09"
},
"template": {
"path": ".claude/commands/template.md",
"description": "List available templates and their features",
"status": "stable",
"created": "2025-12-09",
"updated": "2025-12-09"
},
"skills": {
"path": ".claude/commands/skills.md",
"description": "List installed skills or create new ones",
"status": "stable",
"created": "2025-12-10",
"updated": "2025-12-10"
},
"record-demo": {
"path": ".claude/commands/record-demo.md",
"description": "Guided Playwright recording with interactive or script mode",
"status": "stable",
"created": "2025-12-08",
"updated": "2025-12-10"
},
"generate-voiceover": {
"path": ".claude/commands/generate-voiceover.md",
"description": "Generate TTS voiceover using ElevenLabs or Qwen3-TTS",
"status": "stable",
"created": "2025-12-08",
"updated": "2026-02-19"
},
"contribute": {
"path": ".claude/commands/contribute.md",
"description": "Share improvements - issues, PRs, skills, templates",
"status": "stable",
"created": "2025-12-10",
"updated": "2025-12-10"
},
"scene-review": {
"path": ".claude/commands/scene-review.md",
"description": "Scene-by-scene review in Remotion Studio before voiceover",
"status": "stable",
"created": "2025-12-10",
"updated": "2025-12-10"
},
"design": {
"path": ".claude/commands/design.md",
"description": "Focused design refinement session for a scene",
"status": "stable",
"created": "2025-12-10",
"updated": "2025-12-13"
},
"versions": {
"path": ".claude/commands/versions.md",
"description": "Check dependency versions and toolkit updates",
"status": "stable",
"created": "2025-12-20",
"updated": "2025-12-20"
},
"redub": {
"path": ".claude/commands/redub.md",
"description": "Redub video with a different voice (transcribe + TTS)",
"status": "beta",
"created": "2025-12-28",
"updated": "2025-12-28"
},
"voice-clone": {
"path": ".claude/commands/voice-clone.md",
"description": "Record, test, and save a cloned voice to a brand profile",
"status": "beta",
"created": "2026-02-19",
"updated": "2026-02-19"
},
"setup": {
"path": ".claude/commands/setup.md",
"description": "First-time toolkit setup - cloud GPU, file transfer, voice, and prerequisites",
"status": "beta",
"created": "2026-03-23",
"updated": "2026-03-23"
},
"publish": {
"path": ".claude/commands/publish.md",
"description": "Publish a finished video to YouTube - auto-fills metadata from project.json, then uploads",
"status": "beta",
"created": "2026-06-09",
"updated": "2026-06-09"
}
},
"tools": {
"voiceover": {
"path": "tools/voiceover.py",
"description": "Generate TTS voiceovers using ElevenLabs or Qwen3-TTS",
"usage": "python tools/voiceover.py --script SCRIPT.md --output out.mp3",
"status": "stable",
"created": "2025-12-08",
"updated": "2026-06-09",
"options": {
"pacingQC": "results include wpm + pacing label (fast/slow/ok); --max-wpm clamps fast takes with pitch-preserving atempo (floor 0.85x)"
}
},
"music": {
"path": "tools/music.py",
"description": "Generate background music using ElevenLabs",
"usage": "python tools/music.py --prompt 'description' --duration 120 --output music.mp3",
"status": "stable",
"created": "2025-12-08",
"updated": "2025-12-08"
},
"music_gen": {
"path": "tools/music_gen.py",
"description": "AI music generation using ACE-Step 1.5 (text-to-music, cover, stem extraction, repainting, continuation)",
"usage": "python tools/music_gen.py --prompt 'Upbeat tech' --duration 60 --bpm 128 --output music.mp3",
"status": "stable",
"options": {
"prompt": "Music description",
"lyrics": "Song lyrics (enables vocals)",
"duration": "Duration in seconds (10-600)",
"bpm": "Tempo (30-300)",
"key": "Musical key (e.g., 'C Major', 'Am')",
"time-sig": "Time signature (2, 3, 4, 6)",
"preset": "Scene preset (corporate-bg, upbeat-tech, ambient, dramatic, tension, hopeful, cta, lofi)",
"brand": "Brand name for style hints",
"cloud": "Cloud provider: acemusic (default), modal, runpod",
"thinking": "Enable 5Hz LM thinking mode (default for acemusic)",
"no-thinking": "Disable thinking mode (faster)",
"variations": "Generate N variations (1-8, acemusic only)",
"cover": "Cover/style transfer mode (requires --reference)",
"repaint": "Repaint mode: regenerate a time segment (acemusic only)",
"repaint-start": "Repaint start time in seconds",
"repaint-end": "Repaint end time in seconds",
"continuation": "Continue from existing audio (acemusic only)",
"extract": "Stem extraction (vocals, drums, bass, guitar, piano, other)",
"guidance-scale": "Prompt adherence (1.0-15.0)",
"infer-method": "Inference method: ode (deterministic) or sde (stochastic)",
"format": "Audio format: mp3, wav, flac",
"steps": "Inference steps (default: 8 for turbo)"
},
"presets": [
"corporate-bg",
"upbeat-tech",
"ambient",
"dramatic",
"tension",
"hopeful",
"cta",
"lofi"
],
"envVars": [
"ACEMUSIC_API_KEY",
"RUNPOD_API_KEY",
"RUNPOD_ACESTEP_ENDPOINT_ID",
"MODAL_MUSIC_GEN_ENDPOINT_URL"
],
"created": "2026-03-22",
"updated": "2026-04-03"
},
"sfx": {
"path": "tools/sfx.py",
"description": "Generate sound effects using ElevenLabs",
"usage": "python tools/sfx.py --preset whoosh --output sfx.mp3",
"status": "stable",
"created": "2025-12-08",
"updated": "2025-12-08"
},
"redub": {
"path": "tools/redub.py",
"description": "Redub video with different voice (extract audio, transcribe, TTS, replace)",
"usage": "python tools/redub.py --input video.mp4 --voice-id VOICE_ID --output dubbed.mp4",
"status": "beta",
"created": "2025-12-28",
"updated": "2025-12-28"
},
"addmusic": {
"path": "tools/addmusic.py",
"description": "Add background music to video (generate via ElevenLabs or use existing file)",
"usage": "python tools/addmusic.py --input video.mp4 --prompt 'Subtle corporate' --output output.mp4",
"status": "beta",
"created": "2025-12-28",
"updated": "2025-12-28"
},
"dewatermark": {
"path": "tools/dewatermark.py",
"description": "Remove watermarks using AI inpainting (ProPainter) - supports local and RunPod cloud",
"usage": "python tools/dewatermark.py --input video.mp4 --preset sora --output clean.mp4 --runpod",
"status": "beta",
"optional": true,
"requires": "RunPod account OR local NVIDIA GPU + ProPainter (~2GB)",
"presets": [
"notebooklm",
"tiktok",
"sora",
"stock-br",
"stock-bl",
"stock-center"
],
"created": "2025-12-29",
"updated": "2025-12-30"
},
"locate_watermark": {
"path": "tools/locate_watermark.py",
"description": "Helper tool to identify watermark coordinates using grid overlay and verification",
"usage": "python tools/locate_watermark.py --input video.mp4 --grid --output-dir ./review/",
"status": "beta",
"requires": "ImageMagick (brew install imagemagick)",
"presets": [
"notebooklm",
"tiktok",
"sora",
"stock-br",
"stock-bl",
"stock-center"
],
"created": "2025-12-29",
"updated": "2025-12-30"
},
"verify_setup": {
"path": "tools/verify_setup.py",
"description": "Verify toolkit setup - check prerequisites, cloud GPU, R2, and voice configuration",
"usage": "python tools/verify_setup.py [--test] [--json]",
"status": "beta",
"created": "2026-03-23",
"updated": "2026-03-23"
},
"notebooklm_brand": {
"path": "tools/notebooklm_brand.py",
"description": "Post-process NotebookLM videos with custom branding (trim outro, add logo/URL)",
"usage": "python tools/notebooklm_brand.py --input video.mp4 --logo logo.png --url 'mysite.com' --output branded.mp4",
"status": "beta",
"created": "2025-12-29",
"updated": "2025-12-29"
},
"image_edit": {
"path": "tools/image_edit.py",
"description": "AI image editing using Qwen-Image-Edit - style transfer, backgrounds, prompts",
"usage": "python tools/image_edit.py --input photo.jpg --prompt 'Add sunglasses' --output edited.png",
"status": "stable",
"category": "image-editing",
"backend": "qwen-image-edit-2511",
"requires": "RunPod account",
"presets": {
"background": [
"office",
"studio",
"outdoors",
"pyramids",
"beach",
"city",
"mountains",
"space",
"forest",
"cafe"
],
"style": [
"cyberpunk",
"anime",
"oil-painting",
"watercolor",
"pixel-art",
"noir",
"pop-art",
"sketch",
"vintage",
"cinematic"
],
"viewpoint": [
"front",
"profile",
"three-quarter",
"looking-up",
"looking-down"
]
},
"envVars": [
"RUNPOD_API_KEY",
"RUNPOD_QWEN_EDIT_ENDPOINT_ID"
],
"estimatedCost": "$0.01-0.02 per image",
"created": "2026-01-01",
"updated": "2026-01-05"
},
"upscale": {
"path": "tools/upscale.py",
"description": "AI image upscaling using RealESRGAN - 2x/4x with optional face enhancement",
"usage": "python tools/upscale.py --input photo.jpg --output photo_4x.png --runpod",
"status": "stable",
"category": "image-editing",
"backend": "realesrgan",
"requires": "RunPod account",
"options": {
"scale": [
2,
4
],
"model": [
"general",
"anime",
"photo"
],
"faceEnhance": true,
"format": [
"png",
"jpg",
"webp"
]
},
"envVars": [
"RUNPOD_API_KEY",
"RUNPOD_UPSCALE_ENDPOINT_ID"
],
"estimatedCost": "$0.01-0.05 per image",
"created": "2026-01-04",
"updated": "2026-01-05"
},
"sadtalker": {
"path": "tools/sadtalker.py",
"description": "Generate talking head videos from portrait image + audio using SadTalker",
"usage": "python tools/sadtalker.py --image portrait.png --audio voiceover.mp3 --preprocess full --output talking.mp4",
"status": "beta",
"category": "video-generation",
"backend": "sadtalker",
"requires": "RunPod account",
"options": {
"presets": [
"default",
"natural",
"expressive",
"professional",
"fullbody"
],
"preprocess": [
"crop",
"resize",
"full"
],
"size": [
256,
512
],
"still": true,
"expressionScale": "0.5-2.0"
},
"envVars": [
"RUNPOD_API_KEY",
"RUNPOD_SADTALKER_ENDPOINT_ID"
],
"estimatedCost": "$0.02-0.15 per video (depends on audio length)",
"documentation": "docs/sadtalker.md",
"created": "2026-01-11",
"updated": "2026-01-12"
},
"qwen3_tts": {
"path": "tools/qwen3_tts.py",
"description": "Generate speech using Qwen3-TTS - built-in voices, emotion control, voice cloning",
"usage": "python tools/qwen3_tts.py --text \"Hello\" --speaker Ryan --output hello.mp3",
"status": "beta",
"category": "audio-generation",
"backend": "qwen3-tts",
"requires": "RunPod account",
"options": {
"speakers": [
"Ryan",
"Aiden",
"Vivian",
"Serena",
"Uncle_Fu",
"Dylan",
"Eric",
"Ono_Anna",
"Sohee"
],
"languages": [
"Auto",
"English",
"Chinese",
"French",
"German",
"Italian",
"Japanese",
"Korean",
"Portuguese",
"Russian",
"Spanish"
],
"modes": [
"custom_voice",
"clone"
],
"formats": [
"mp3",
"wav"
],
"pacingQC": "results include wpm + pacing label (fast/slow/ok); --max-wpm clamps fast takes with pitch-preserving atempo (floor 0.85x)"
},
"envVars": [
"RUNPOD_API_KEY",
"RUNPOD_QWEN3_TTS_ENDPOINT_ID"
],
"estimatedCost": "$0.005-0.10 per generation",
"created": "2026-02-19",
"updated": "2026-06-09"
},
"sync_timing": {
"path": "tools/sync_timing.py",
"description": "Sync scene durationSeconds in Remotion config with actual audio durations",
"usage": "python tools/sync_timing.py --apply",
"status": "stable",
"category": "project",
"requires": "ffprobe (from ffmpeg)",
"created": "2026-02-24",
"updated": "2026-02-24"
},
"flux2": {
"path": "tools/flux2.py",
"description": "AI image generation and editing using FLUX.2 Klein 4B - text-to-image, image editing, and scene presets",
"usage": "python tools/flux2.py --preset title-bg --brand digital-samba",
"status": "beta",
"category": "image-generation",
"backend": "flux2-klein-4b",
"requires": "RunPod account",
"options": {
"modes": [
"generate",
"edit"
],
"presets": [
"title-bg",
"problem",
"solution",
"demo-bg",
"stats-bg",
"cta",
"thumbnail",
"portrait-bg"
],
"brand": true,
"width": [
512,
768,
1024,
1280,
1920
],
"height": [
512,
768,
1024,
1080,
1280
],
"steps": "4 (fast) to 50 (quality)",
"guidance": "1.0 (fast) to 4.0 (quality)",
"seed": true,
"multiImage": true
},
"envVars": [
"RUNPOD_API_KEY",
"RUNPOD_FLUX2_ENDPOINT_ID"
],
"estimatedCost": "$0.01-0.03 per image",
"created": "2026-03-14",
"updated": "2026-03-15"
},
"ideogram4": {
"path": "tools/ideogram4.py",
"description": "Ideogram 4 text-to-image via hosted v4 API — best-in-class in-image text rendering and exact color/layout control through structured JSON captions",
"usage": "python3 tools/ideogram4.py --json caption.json --output title.png",
"status": "beta",
"category": "image-generation",
"backend": "ideogram-4 hosted v4 API",
"requires": "IDEOGRAM_API_KEY (developer.ideogram.ai)",
"options": {
"modes": [
"json_prompt (--json)",
"text_prompt (--prompt)"
],
"rendering_speed": [
"FLASH",
"TURBO",
"DEFAULT",
"QUALITY"
],
"brand": true
},
"note": "Commercial license via paid API. Skill `.claude/skills/ideogram4/` teaches the JSON caption format; Claude is the magic-prompt expander. Live-tested (json_prompt + text_prompt paths)."
},
"ltx2": {
"path": "tools/ltx2.py",
"description": "AI video generation using LTX-2.3 22B - text-to-video, image-to-video clips with synchronized audio",
"usage": "python tools/ltx2.py --prompt \"A sunset over the ocean\" --output sunset.mp4",
"status": "beta",
"category": "video-generation",
"backend": "ltx-2.3-22b",
"requires": "Modal account, HuggingFace token",
"options": {
"modes": [
"text-to-video",
"image-to-video"
],
"width": [
512,
768,
1024
],
"height": [
512,
576,
1024
],
"numFrames": "25-193 ((n-1)%8==0)",
"fps": 24,
"quality": [
"standard",
"fast"
],
"steps": "15 (fast) to 30+ (standard)",
"seed": true,
"loras": [
"crt-terminal"
]
},
"envVars": [
"MODAL_LTX2_ENDPOINT_URL"
],
"estimatedCost": "$0.20-0.25 per 5s clip",
"created": "2026-03-25",
"updated": "2026-04-21"
},
"chain_video": {
"path": "tools/chain_video.py",
"description": "Chain LTX-2 clips with visual continuity — each scene uses the last frame of the previous as input",
"usage": "python tools/chain_video.py --scenes-dir images/ --output-dir videos/ --prompt \"Cinematic flow\"",
"status": "beta",
"category": "video-generation",
"backend": "ltx-2.3-22b (via ltx2.py)",
"requires": "Modal account (same as ltx2)",
"options": {
"inputModes": [
"scenes-dir (numbered images)",
"first-clip (existing video)"
],
"perScenePrompts": "--prompts-file scenes.json",
"resume": "auto-skips existing clips",
"progress": [
"json",
"human"
],
"prefix": "chain (default)"
},
"envVars": [
"MODAL_LTX2_ENDPOINT_URL"
],
"estimatedCost": "$0.20-0.25 per scene (delegates to ltx2)",
"created": "2026-04-04",
"updated": "2026-04-04"
},
"youtube_upload": {
"path": "tools/youtube_upload.py",
"description": "Upload a rendered video to YouTube via the Data API v3 (OAuth 2.0, resumable upload) — title/description/tags/thumbnail/captions/playlist, private/unlisted/public or scheduled publish",
"usage": "python3 tools/youtube_upload.py --video out/video.mp4 --title \"My video\" --tags \"ai,explainer\" --json-out",
"status": "beta",
"category": "publishing",
"backend": "YouTube Data API v3 (OAuth 2.0 installed-app flow)",
"requires": "Google Cloud OAuth client (Desktop app); YOUTUBE_CLIENT_SECRETS_FILE",
"options": {
"auth": "--auth (interactive login, caches a refresh token per --account)",
"privacy": [
"private",
"unlisted",
"public"
],
"schedule": "--publish-at ISO8601 UTC (forces private at insert)",
"extras": [
"--thumbnail",
"--captions",
"--playlist"
],
"dryRun": true,
"jsonOut": true,
"multiChannel": "--account NAME"
},
"envVars": [
"YOUTUBE_CLIENT_SECRETS_FILE",
"YOUTUBE_TOKEN_DIR"
],
"note": "Uploads require OAuth, not an API key. Default quota 10,000 units/day; videos.insert ~1600 units (~6 uploads/day). Unverified OAuth apps force uploads to private until Google-verified. Cached tokens live in _internal/.youtube/ (gitignored).",
"documentation": "docs/youtube-upload.md",
"created": "2026-06-09",
"updated": "2026-06-09"
}
},
"optionalComponents": {
"propainter": {
"name": "ProPainter",
"description": "AI video inpainting for watermark removal (local mode)",
"installPath": "~/.video-toolkit/propainter/",
"repository": "https://github.com/sczhou/ProPainter.git",
"diskSpace": "~2GB",
"hardware": {
"recommended": "NVIDIA GPU (8GB+ VRAM)",
"notSupported": "Apple Silicon, CPU (use --runpod instead)",
"memory": "8-10GB VRAM for 720p with fp16"
},
"installCommand": "python tools/dewatermark.py --install",
"statusCommand": "python tools/dewatermark.py --status",
"documentation": "docs/optional-components.md"
}
},
"cloudProviders": {
"runpod": {
"name": "RunPod",
"description": "Serverless GPU cloud for video and image processing",
"documentation": "docs/runpod-setup.md",
"envVars": [
"RUNPOD_API_KEY"
],
"endpoints": {
"propainter": {
"image": "ghcr.io/conalmullan/video-toolkit-propainter:latest",
"dockerfile": "docker/runpod-propainter/",
"envVar": "RUNPOD_ENDPOINT_ID",
"operations": [
"dewatermark"
],
"estimatedCost": "$0.05-0.30 per video"
},
"qwen-edit": {
"image": "ghcr.io/conalmullan/video-toolkit-qwen-edit:latest",
"dockerfile": "docker/runpod-qwen-edit/",
"envVar": "RUNPOD_QWEN_EDIT_ENDPOINT_ID",
"operations": [
"image_edit"
],
"estimatedCost": "$0.01-0.02 per image"
},
"realesrgan": {
"image": "ghcr.io/conalmullan/video-toolkit-realesrgan:latest",
"dockerfile": "docker/runpod-realesrgan/",
"envVar": "RUNPOD_UPSCALE_ENDPOINT_ID",
"operations": [
"upscale"
],
"estimatedCost": "$0.01-0.05 per image"
},
"sadtalker": {
"image": "ghcr.io/conalmullan/video-toolkit-sadtalker:latest",
"dockerfile": "docker/runpod-sadtalker/",
"envVar": "RUNPOD_SADTALKER_ENDPOINT_ID",
"operations": [
"sadtalker"
],
"estimatedCost": "$0.02-0.15 per video"
},
"qwen3-tts": {
"image": "ghcr.io/conalmullan/video-toolkit-qwen3-tts:latest",
"dockerfile": "docker/runpod-qwen3-tts/",
"envVar": "RUNPOD_QWEN3_TTS_ENDPOINT_ID",
"operations": [
"qwen3_tts"
],
"estimatedCost": "$0.005-0.10 per generation"
},
"flux2": {
"image": "ghcr.io/conalmullan/video-toolkit-flux2:latest",
"dockerfile": "docker/runpod-flux2/",
"envVar": "RUNPOD_FLUX2_ENDPOINT_ID",
"operations": [
"flux2"
],
"estimatedCost": "$0.01-0.03 per image"
},
"acestep": {
"image": "ghcr.io/conalmullan/video-toolkit-acestep:latest",
"dockerfile": "docker/runpod-acestep/",
"envVar": "RUNPOD_ACESTEP_ENDPOINT_ID",
"operations": [
"music_gen"
],
"estimatedCost": "$0.01-0.05 per track"
}
},
"created": "2025-12-30",
"updated": "2026-03-22"
},
"modal": {
"name": "Modal",
"description": "Serverless GPU cloud with Python-native deployment and fast cold starts",
"documentation": "docs/modal-setup.md",
"envVars": [
"MODAL_TOKEN_ID",
"MODAL_TOKEN_SECRET"
],
"endpoints": {
"qwen3-tts": {
"appFile": "docker/modal-qwen3-tts/app.py",
"envVar": "MODAL_QWEN3_TTS_ENDPOINT_URL",
"operations": [
"qwen3_tts"
],
"gpu": "A10G",
"estimatedCost": "$0.005-0.10 per generation"
},
"flux2": {
"appFile": "docker/modal-flux2/app.py",
"envVar": "MODAL_FLUX2_ENDPOINT_URL",
"operations": [
"flux2"
],
"gpu": "A10G",
"estimatedCost": "$0.01-0.03 per image"
},
"upscale": {
"appFile": "docker/modal-upscale/app.py",
"envVar": "MODAL_UPSCALE_ENDPOINT_URL",
"operations": [
"upscale"
],
"gpu": "A10G",
"estimatedCost": "$0.005-0.02 per image"
},
"image-edit": {
"appFile": "docker/modal-image-edit/app.py",
"envVar": "MODAL_IMAGE_EDIT_ENDPOINT_URL",
"operations": [
"image_edit"
],
"gpu": "A100",
"estimatedCost": "$0.02-0.05 per image"
},
"music-gen": {
"appFile": "docker/modal-music-gen/app.py",
"envVar": "MODAL_MUSIC_GEN_ENDPOINT_URL",
"operations": [
"music_gen"
],
"gpu": "A10G",
"estimatedCost": "$0.02-0.10 per generation"
},
"sadtalker": {
"appFile": "docker/modal-sadtalker/app.py",
"envVar": "MODAL_SADTALKER_ENDPOINT_URL",
"operations": [
"sadtalker"
],
"gpu": "A10G",
"estimatedCost": "$0.05-0.30 per video"
},
"dewatermark": {
"appFile": "docker/modal-propainter/app.py",
"envVar": "MODAL_DEWATERMARK_ENDPOINT_URL",
"operations": [
"dewatermark"
],
"gpu": "A10G",
"estimatedCost": "$0.05-0.50 per video"
},
"ltx2": {
"appFile": "docker/modal-ltx2/app.py",
"envVar": "MODAL_LTX2_ENDPOINT_URL",
"operations": [
"text-to-video",
"image-to-video"
],
"gpu": "A100-80GB",
"estimatedCost": "$0.20-0.25 per 5s clip"
}
},
"created": "2026-03-23",
"updated": "2026-03-25"
}
},
"templates": {
"sprint-review": {
"path": "templates/sprint-review/",
"description": "Sprint review videos with demos, stats, and voiceover",
"status": "stable",
"created": "2025-12-04",
"updated": "2025-12-09"
},
"sprint-review-v2": {
"path": "templates/sprint-review-v2/",
"description": "Composable scene-based sprint review with film-quality upgrades",
"status": "beta",
"created": "2026-02-19",
"updated": "2026-02-19"
},
"product-demo": {
"path": "templates/product-demo/",
"description": "Marketing videos with dark tech aesthetic, stats, CTA",
"status": "stable",
"created": "2025-12-09",
"updated": "2025-12-10"
},
"concept-explainer-short": {
"path": "templates/concept-explainer-short/",
"description": "9:16 vertical concept-explainer shorts (TikTok/Reels/YouTube Shorts) — Python/moviepy build driven by scenes.json: cloned TTS with pacing QC, Ideogram cards, LTX b-roll, burned karaoke captions",
"stack": "python-moviepy",
"status": "beta",
"created": "2026-06-09",
"updated": "2026-06-09"
}
},
"transitions": {
"glitch": {
"path": "lib/transitions/presentations/glitch.tsx",
"description": "Digital distortion with RGB shift and scan lines",
"options": [
"intensity",
"slices",
"rgbShift"
],
"bestFor": "Tech demos, edgy reveals, cyberpunk aesthetic",
"status": "stable"
},
"rgbSplit": {
"path": "lib/transitions/presentations/rgb-split.tsx",
"description": "Chromatic aberration / color separation effect",
"options": [
"direction",
"displacement"
],
"bestFor": "Modern tech, energetic transitions",
"status": "stable"
},
"zoomBlur": {
"path": "lib/transitions/presentations/zoom-blur.tsx",
"description": "Radial motion blur with scale",
"options": [
"direction",
"blurAmount"
],
"bestFor": "CTAs, high-energy moments, impact",
"status": "stable"
},
"lightLeak": {
"path": "lib/transitions/presentations/light-leak.tsx",
"description": "Cinematic lens flare and overexposure",
"options": [
"temperature",
"direction"
],
"bestFor": "Celebrations, film aesthetic, warm moments",
"status": "stable"
},
"clockWipe": {
"path": "lib/transitions/presentations/clock-wipe.tsx",
"description": "Radial sweep reveal like clock hands",
"options": [
"startAngle",
"direction",
"segments"
],
"bestFor": "Time-related content, playful reveals",
"status": "stable"
},
"pixelate": {
"path": "lib/transitions/presentations/pixelate.tsx",
"description": "Digital mosaic dissolution with glitch artifacts",
"options": [
"maxBlockSize",
"gridSize",
"scanlines",
"glitchArtifacts",
"randomness"
],
"bestFor": "Retro/gaming themes, digital transformations",
"status": "stable"
},
"checkerboard": {
"path": "lib/transitions/presentations/checkerboard.tsx",
"description": "Grid-based reveal with multiple patterns",
"options": [
"gridSize",
"pattern",
"stagger",
"squareAnimation"
],
"patterns": [
"sequential",
"random",
"diagonal",
"alternating",
"spiral",
"rows",
"columns",
"center-out",
"corners-in"
],
"bestFor": "Playful reveals, structured transitions",
"status": "stable"
}
},