-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.tsx
More file actions
executable file
·1446 lines (1239 loc) · 40.9 KB
/
cli.tsx
File metadata and controls
executable file
·1446 lines (1239 loc) · 40.9 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
#!/usr/bin/env bun
import { detectProtocol, getImageSequence } from './termimg.js';
import {
log,
text,
spinner,
isCancel,
cancel,
select,
group,
} from '@clack/prompts';
import { SelectPrompt } from '@clack/core';
import { fal as falClient } from '@fal-ai/client';
import yargs from 'yargs';
import { hideBin } from 'yargs/helpers';
import path from 'path';
import fs from 'fs';
import os from 'os';
// detectProtocol()
// console.write(await getImageSequence('/Users/bennykok/Documents/GitHub/new-project/outputs/image-1758418870421.png', 400));
// Config file management
const CONFIG_DIR = path.join(os.homedir(), '.paintai');
const CONFIG_FILE = path.join(CONFIG_DIR, 'config.json');
interface Config {
apiKey?: string;
}
function ensureConfigDir() {
if (!fs.existsSync(CONFIG_DIR)) {
fs.mkdirSync(CONFIG_DIR, { mode: 0o700 }); // Only user can read/write
}
}
function loadConfig(): Config {
ensureConfigDir();
if (!fs.existsSync(CONFIG_FILE)) {
return {};
}
try {
const data = fs.readFileSync(CONFIG_FILE, 'utf8');
return JSON.parse(data);
} catch (error) {
log.error('Failed to read config file. Please reconfigure your API key.');
return {};
}
}
function saveConfig(config: Config) {
ensureConfigDir();
try {
fs.writeFileSync(CONFIG_FILE, JSON.stringify(config, null, 2), {
mode: 0o600,
}); // Only user can read/write
} catch (error) {
log.error('Failed to save config file.');
throw error;
}
}
function getApiKey(): string | null {
// First check environment variable (for backward compatibility)
if (process.env.FAL_API_KEY) {
return process.env.FAL_API_KEY;
}
// Then check config file
const config = loadConfig();
return config.apiKey || null;
}
// Validate FAL_API_KEY early
function validateApiKey() {
const apiKey = getApiKey();
if (!apiKey) {
log.error('FAL_API_KEY is not configured!');
log.info('To get your API key:');
log.info('1. Visit https://fal.ai/dashboard/keys');
log.info('2. Create a new API key');
log.info('3. Run: paint config --api-key YOUR_KEY_HERE');
process.exit(1);
}
return apiKey;
}
const apiKey = getApiKey()!;
const fal = createFal({
apiKey: apiKey,
});
// Configure fal client - validation will happen in command handlers
falClient.config({
credentials: apiKey,
});
// Import additional dependencies for handlers
import { createFal } from '@ai-sdk/fal';
import { experimental_generateImage as generateImage } from 'ai';
// Video generation types
type AspectRatio = '16:9' | '9:16' | '1:1';
const reset = '\x1b[0m';
const bright = '\x1b[1m';
const cyan = '\x1b[36m';
const yellow = '\x1b[33m';
const green = '\x1b[32m';
const dim = '\x1b[2m';
const dim2x = '\x1b[90m';
// Helper functions
function indentBlock(
content: string,
spaces: number = 2,
state: string = 'active',
checkLastLine = true
): string {
const lines = content.split('\n');
return lines
.map((line, index) => {
const isLastLine = index === lines.length - 1;
const symbol =
state === 'submit'
? '│'
: (isLastLine && checkLastLine ? '└' : '│').trim();
const indent = `${dim2x}${symbol}${reset}` + ' '.repeat(spaces).trim();
return `${indent}${line}`.trim();
})
.join('\n');
}
// Function to get the most recent image from outputs folder
function getLastImage(outputDir: string) {
if (!fs.existsSync(outputDir)) {
return null;
}
const files = fs
.readdirSync(outputDir)
.filter(file => file.startsWith('image-') && file.endsWith('.png'))
.map(file => ({
name: file,
path: path.join(outputDir, file),
stats: fs.statSync(path.join(outputDir, file)),
}))
.sort((a, b) => b.stats.mtime.getTime() - a.stats.mtime.getTime());
return files.length > 0 ? files[0] : null;
}
// Function to get all images for cycling (limited to 50 to prevent preview generation issues)
function getAllImages(outputDir: string) {
if (!fs.existsSync(outputDir)) {
return [];
}
const files = fs
.readdirSync(outputDir)
.filter(file => file.startsWith('image-') && file.endsWith('.png'))
.map(file => ({
name: file,
path: path.join(outputDir, file),
stats: fs.statSync(path.join(outputDir, file)),
}))
.sort((a, b) => b.stats.mtime.getTime() - a.stats.mtime.getTime())
.slice(0, 50); // Limit to 50 images to prevent preview generation issues
return files;
}
// Command handlers
async function handleConfigCommand(argv: any) {
const apiKey = argv.apiKey as string;
if (apiKey) {
// Save to secure config file
try {
const config = loadConfig();
config.apiKey = apiKey;
saveConfig(config);
log.step('API key saved securely!');
log.info('Your API key has been saved to a secure config file.');
log.info(`Config location: ${CONFIG_FILE}`);
log.info('');
log.info(
'You can now use paint commands without setting environment variables.'
);
} catch (error) {
log.error('Failed to save API key. Please try again.');
process.exit(1);
}
process.exit(0);
} else {
// Show current status and help
const currentKey = getApiKey();
if (currentKey) {
const maskedKey =
currentKey.substring(0, 8) +
'...' +
currentKey.substring(currentKey.length - 4);
const source = process.env.FAL_API_KEY
? 'environment variable'
: 'config file';
log.step(`FAL_API_KEY is configured: ${maskedKey} (from ${source})`);
} else {
log.error('FAL_API_KEY is not configured!');
}
log.info('');
log.info('To configure your API key:');
log.info('1. Get your key from: https://fal.ai/dashboard/keys');
log.info('2. Run: paint config --api-key YOUR_KEY_HERE');
log.info('');
log.info('The API key will be stored securely in a local config file.');
log.info('No need to modify shell configuration files!');
process.exit(0);
}
}
async function handleCompletionCommand(argv: any) {
const completionShell = argv.shell as string;
if (completionShell) {
// Let yargs handle the completion script generation
process.exit(0);
} else {
console.log(`
To install tab completion for paint:
For bash users:
echo 'eval "$(paint --completion bash)"' >> ~/.bashrc
For zsh users:
echo 'eval "$(paint --completion zsh)"' >> ~/.zshrc
For fish users:
echo 'paint --completion fish | source' >> ~/.config/fish/config.fish
After adding the line, restart your terminal or run:
source ~/.${process.env.SHELL?.includes('zsh') ? 'zshrc' : 'bashrc'}
`);
process.exit(0);
}
}
async function handleLastCommand(argv: any) {
const currentDir = process.cwd();
const outputDir = argv.output
? path.resolve(argv.output)
: path.join(currentDir, 'outputs');
const lastImage = getLastImage(outputDir);
if (!lastImage) {
log.error('No images found in outputs folder');
process.exit(1);
}
log.step(`Loading last image: ${lastImage.name}`);
const sequence = await getImageSequence(lastImage.path, 500);
log.step(sequence ?? '');
process.exit(0);
}
async function handleEditCommand(argv: any) {
// Validate API key for commands that need it
validateApiKey();
const currentDir = process.cwd();
const outputDir = argv.output
? path.resolve(argv.output)
: path.join(currentDir, 'outputs');
// ensure outputs directory exists
fs.mkdirSync(outputDir, { recursive: true });
// Extract positional arguments - yargs puts them in argv._ array
const imageFile = (argv.image as string) || ((argv._ && argv._[1]) as string);
const promptFromArgs =
(argv.prompt as string) || ((argv._ && argv._[2]) as string);
let selectedImage;
// Check if imageFile parameter is provided
if (imageFile) {
// Validate that the provided file exists
if (!fs.existsSync(imageFile)) {
log.error(`Image file not found: ${imageFile}`);
process.exit(1);
}
// Check if it's a valid image file (basic check by extension)
const validExtensions = ['.png', '.jpg', '.jpeg', '.gif', '.bmp', '.webp'];
const fileExtension = imageFile
.toLowerCase()
.substring(imageFile.lastIndexOf('.'));
if (!validExtensions.includes(fileExtension)) {
log.error(
`Invalid image file format: ${imageFile}. Supported formats: ${validExtensions.join(', ')}`
);
process.exit(1);
}
// Create image object for the provided file
const stats = fs.statSync(imageFile);
selectedImage = {
name: imageFile.split('/').pop() || imageFile,
path: imageFile,
stats: stats,
};
log.step(`Using provided image: ${selectedImage.name}`);
} else {
// Fall back to selecting from outputs folder
const allImages = getAllImages(outputDir);
if (allImages.length === 0) {
log.error('No images found in outputs folder to edit');
process.exit(1);
}
// Pre-generate image previews
const imagePreviews = await Promise.all(
allImages.map(async img => {
const preview = await getImageSequence(img.path, 200);
return { image: img, preview };
})
);
const selectPrompt = new SelectPrompt<{ value: string }>({
options: allImages.map((img, index) => ({
value: index.toString(),
label: `${img.name} (${new Date(img.stats.mtime).toLocaleString()})`,
})),
render: function () {
const currentIndex = this.cursor;
const currentImageData = imagePreviews[currentIndex];
if (!currentImageData) {
return 'No image selected';
}
const optionsList = allImages
.map((img, index) => {
const isSelected = index === currentIndex;
if (isSelected) {
// Highlight the selected option
const prefix = `${bright}${cyan}❯${reset} `;
const label = `${bright}${yellow}${img.name}${reset} ${dim}(${new Date(img.stats.mtime).toLocaleString()})${reset}`;
return `${prefix}${label}`;
} else {
// Regular styling for non-selected options
const prefix = ' ';
const label = `${img.name} ${dim}(${new Date(img.stats.mtime).toLocaleString()})${reset}`;
return `${prefix}${label}`;
}
})
.join('\n');
// Clear screen and move cursor to top to prevent ghosting
const clearScreen = this.state == 'submit' ? '' : '\x1b[2J\x1b[H';
let output = `${clearScreen}◆ Select Image\n`;
output += indentBlock(optionsList, 2, this.state, false);
output += '\n';
output += indentBlock(
' ' + currentImageData.preview ?? '',
2,
this.state,
false
);
if (this.state !== 'submit') {
output += '\n';
output += indentBlock(
`${dim}Use ↑↓ to select, Enter to confirm, Esc to cancel${reset}`,
2,
this.state
);
}
return output.trim();
},
});
const selectedImageIndex = await selectPrompt.prompt();
if (isCancel(selectedImageIndex)) {
cancel('Edit operation cancelled.');
process.exit(0);
}
selectedImage = allImages[parseInt(selectedImageIndex as string)];
log.step(`Selected image: ${selectedImage.name}`);
}
// Show the selected image
const currentSequence = await getImageSequence(selectedImage.path, 500);
log.step('Current image:');
log.step(currentSequence ?? '');
// Get edit prompt - use from args if provided, otherwise prompt user
const editPrompt =
promptFromArgs ||
(await text({
message: 'Edit prompt',
placeholder: 'Make the sky more dramatic, add some clouds',
initialValue: '',
}));
if (isCancel(editPrompt)) {
cancel('Edit operation cancelled.');
process.exit(0);
}
const s = spinner();
s.start('Uploading image and editing...');
// Upload the selected image to fal.ai storage
const imageFileToUpload = new File(
[fs.readFileSync(selectedImage.path)],
selectedImage.name,
{
type: 'image/png',
}
);
const imageUrl = await falClient.storage.upload(imageFileToUpload);
// Use the uploaded image for editing
const editModelName = (argv.model as string) || 'qwen-image-edit'; // Default for editing
const fullEditModelName = editModelName.startsWith('fal-ai/')
? editModelName
: `fal-ai/${editModelName}`;
const { image: editedImage } = await generateImage({
model: fal.image(fullEditModelName),
prompt: editPrompt as string,
providerOptions: {
fal: {
image_url: imageUrl, // Pass the uploaded image URL
image_urls: [imageUrl],
},
},
});
s.stop('Editing image');
// Save the edited image
const editFilename = `image-${Date.now()}-edited.png`;
const editPath = path.join(outputDir, editFilename);
fs.writeFileSync(editPath, editedImage.uint8Array);
log.step(`Edited image saved to ${editFilename}`);
// Display the edited image
const editedSequence = await getImageSequence(editPath, 500);
log.step(editedSequence ?? '');
process.exit(0);
}
async function handleImageCommand(argv: any) {
// Validate API key for commands that need it
validateApiKey();
const currentDir = process.cwd();
const outputDir = argv.output
? path.resolve(argv.output)
: path.join(currentDir, 'outputs');
// ensure outputs directory exists
fs.mkdirSync(outputDir, { recursive: true });
// Extract prompt from positional arguments or named option
const promptFromArgs =
(argv.prompt as string) || ((argv._ && argv._[1]) as string);
const prompt =
promptFromArgs ||
(await text({
message: 'Prompt',
placeholder: 'A serene mountain landscape at sunset',
initialValue: 'A serene mountain landscape at sunset',
}));
if (isCancel(prompt)) {
cancel('Operation cancelled.');
process.exit(0);
}
const s = spinner();
s.start('Generating image');
const modelName = (argv.model as string) || 'flux/dev'; // Default for generation
const fullModelName = modelName.startsWith('fal-ai/')
? modelName
: `fal-ai/${modelName}`;
const { image, providerMetadata } = await generateImage({
model: fal.image(fullModelName),
prompt: prompt as string,
});
s.stop('Generating image');
const filename = `image-${Date.now()}.png`;
const filePath = path.join(outputDir, filename);
fs.writeFileSync(filePath, image.uint8Array);
log.step(`Image saved to ${filename}`);
const sequence = await getImageSequence(filePath, 500);
log.step(sequence ?? '');
process.exit(0);
}
async function handleVideoCommand(argv: any) {
// Validate API key for commands that need it
validateApiKey();
const currentDir = process.cwd();
const outputDir = argv.output
? path.resolve(argv.output)
: path.join(currentDir, 'outputs');
// ensure outputs directory exists
fs.mkdirSync(outputDir, { recursive: true });
// Extract positional arguments - yargs puts them in argv._ array
const imageFile = (argv.image as string) || ((argv._ && argv._[1]) as string);
const promptFromArgs =
(argv.prompt as string) || ((argv._ && argv._[2]) as string);
let selectedImage;
let isImageToVideo = false;
// Check if imageFile parameter is provided
if (imageFile) {
// Validate that the provided file exists
if (!fs.existsSync(imageFile)) {
log.error(`Image file not found: ${imageFile}`);
process.exit(1);
}
// Check if it's a valid image file (basic check by extension)
const validExtensions = ['.png', '.jpg', '.jpeg', '.gif', '.bmp', '.webp'];
const fileExtension = imageFile
.toLowerCase()
.substring(imageFile.lastIndexOf('.'));
if (!validExtensions.includes(fileExtension)) {
log.error(
`Invalid image file format: ${imageFile}. Supported formats: ${validExtensions.join(', ')}`
);
process.exit(1);
}
// Create image object for the provided file
const stats = fs.statSync(imageFile);
selectedImage = {
name: imageFile.split('/').pop() || imageFile,
path: imageFile,
stats: stats,
};
isImageToVideo = true;
log.step(`Using provided image for image-to-video: ${selectedImage.name}`);
} else {
// For text-to-video, we can optionally select from outputs folder
const allImages = getAllImages(outputDir);
if (allImages.length > 0) {
// Ask user if they want to use an existing image
const useImage = await select({
message: 'Do you want to use an existing image for image-to-video?',
options: [
{ value: 'no', label: 'No, generate text-to-video' },
{ value: 'yes', label: 'Yes, select an image for image-to-video' },
],
});
if (isCancel(useImage)) {
cancel('Video generation cancelled.');
process.exit(0);
}
if (useImage === 'yes') {
// Pre-generate image previews
const imagePreviews = await Promise.all(
allImages.map(async img => {
const preview = await getImageSequence(img.path, 200);
return { image: img, preview };
})
);
const selectPrompt = new SelectPrompt<{ value: string }>({
options: allImages.map((img, index) => ({
value: index.toString(),
label: `${img.name} (${new Date(img.stats.mtime).toLocaleString()})`,
})),
render: function () {
const currentIndex = this.cursor;
const currentImageData = imagePreviews[currentIndex];
if (!currentImageData) {
return 'No image selected';
}
const optionsList = allImages
.map((img, index) => {
const isSelected = index === currentIndex;
if (isSelected) {
// Highlight the selected option
const prefix = `${bright}${cyan}❯${reset} `;
const label = `${bright}${yellow}${img.name}${reset} ${dim}(${new Date(img.stats.mtime).toLocaleString()})${reset}`;
return `${prefix}${label}`;
} else {
// Regular styling for non-selected options
const prefix = ' ';
const label = `${img.name} ${dim}(${new Date(img.stats.mtime).toLocaleString()})${reset}`;
return `${prefix}${label}`;
}
})
.join('\n');
// Clear screen and move cursor to top to prevent ghosting
const clearScreen = this.state == 'submit' ? '' : '\x1b[2J\x1b[H';
let output = `${clearScreen}◆ Select Image for Video Generation\n`;
output += indentBlock(optionsList, 2, this.state, false);
output += '\n';
output += indentBlock(
' ' + currentImageData.preview ?? '',
2,
this.state,
false
);
if (this.state !== 'submit') {
output += '\n';
output += indentBlock(
`${dim}Use ↑↓ to select, Enter to confirm, Esc to cancel${reset}`,
2,
this.state
);
}
return output.trim();
},
});
const selectedImageIndex = await selectPrompt.prompt();
if (isCancel(selectedImageIndex)) {
cancel('Video generation cancelled.');
process.exit(0);
}
selectedImage = allImages[parseInt(selectedImageIndex as string)];
isImageToVideo = true;
log.step(`Selected image for image-to-video: ${selectedImage.name}`);
}
}
}
// Get video prompt
const videoPrompt =
promptFromArgs ||
(await text({
message: isImageToVideo
? 'Video prompt (describe the motion/animation)'
: 'Video prompt',
placeholder: isImageToVideo
? 'The camera slowly zooms out, revealing a vast landscape'
: 'A serene mountain landscape with flowing clouds and gentle wind',
initialValue: '',
}));
if (isCancel(videoPrompt)) {
cancel('Video generation cancelled.');
process.exit(0);
}
// Get aspect ratio
const aspectRatio =
(argv.aspectRatio as AspectRatio) ||
((await select({
message: 'Select aspect ratio',
options: [
{ value: '16:9', label: '16:9 (Landscape)' },
{ value: '9:16', label: '9:16 (Portrait)' },
{ value: '1:1', label: '1:1 (Square)' },
],
})) as AspectRatio);
if (isCancel(aspectRatio)) {
cancel('Video generation cancelled.');
process.exit(0);
}
const s = spinner();
s.start(
isImageToVideo
? 'Generating video from image...'
: 'Generating video from text...'
);
try {
let result;
if (isImageToVideo) {
// Upload the selected image to fal.ai storage
const imageFileToUpload = new File(
[fs.readFileSync(selectedImage.path)],
selectedImage.name,
{
type: 'image/png',
}
);
const imageUrl = await falClient.storage.upload(imageFileToUpload);
// Use image-to-video model
result = await falClient.subscribe(
'fal-ai/kling-video/v2.5-turbo/pro/image-to-video',
{
input: {
image_url: imageUrl,
prompt: videoPrompt as string,
aspect_ratio: aspectRatio,
},
logs: true,
onQueueUpdate: update => {
if (update.status === 'IN_PROGRESS') {
s.message(
`Generating video... ${update.logs?.map(log => log.message).join(' ')}`
);
}
},
}
);
} else {
// Use text-to-video model
result = await falClient.subscribe(
'fal-ai/kling-video/v2.5-turbo/pro/text-to-video',
{
input: {
prompt: videoPrompt as string,
aspect_ratio: aspectRatio,
},
logs: true,
onQueueUpdate: update => {
if (update.status === 'IN_PROGRESS') {
s.message(
`Generating video... ${update.logs?.map(log => log.message).join(' ')}`
);
}
},
}
);
}
s.stop('Video generated');
// Save the video
const videoFilename = `video-${Date.now()}.mp4`;
const videoPath = path.join(outputDir, videoFilename);
// Download the video
const videoResponse = await fetch(result.data.video.url);
const videoBuffer = await videoResponse.arrayBuffer();
fs.writeFileSync(videoPath, Buffer.from(videoBuffer));
log.step(`Video saved to ${videoFilename}`);
log.info(`Video URL: ${result.data.video.url}`);
// Show video info
log.step(`Duration: ${result.data.duration}s`);
log.step(`Aspect ratio: ${aspectRatio}`);
} catch (error) {
s.stop('Video generation failed');
log.error(`Failed to generate video: ${error}`);
process.exit(1);
}
process.exit(0);
}
async function handleRmbgCommand(argv: any) {
// Validate API key for commands that need it
validateApiKey();
const currentDir = process.cwd();
const outputDir = argv.output
? path.resolve(argv.output)
: path.join(currentDir, 'outputs');
// ensure outputs directory exists
fs.mkdirSync(outputDir, { recursive: true });
// Extract positional arguments - yargs puts them in argv._ array
const imageFile = (argv.image as string) || ((argv._ && argv._[1]) as string);
let selectedImage;
// Check if imageFile parameter is provided
if (imageFile) {
// Validate that the provided file exists
if (!fs.existsSync(imageFile)) {
log.error(`Image file not found: ${imageFile}`);
process.exit(1);
}
// Check if it's a valid image file (basic check by extension)
const validExtensions = ['.png', '.jpg', '.jpeg', '.gif', '.bmp', '.webp'];
const fileExtension = imageFile
.toLowerCase()
.substring(imageFile.lastIndexOf('.'));
if (!validExtensions.includes(fileExtension)) {
log.error(
`Invalid image file format: ${imageFile}. Supported formats: ${validExtensions.join(', ')}`
);
process.exit(1);
}
// Create image object for the provided file
const stats = fs.statSync(imageFile);
selectedImage = {
name: imageFile.split('/').pop() || imageFile,
path: imageFile,
stats: stats,
};
log.step(`Using provided image: ${selectedImage.name}`);
} else {
// Fall back to selecting from outputs folder
const allImages = getAllImages(outputDir);
if (allImages.length === 0) {
log.error('No images found in outputs folder to process');
process.exit(1);
}
// Pre-generate image previews
const imagePreviews = await Promise.all(
allImages.map(async img => {
const preview = await getImageSequence(img.path, 200);
return { image: img, preview };
})
);
const selectPrompt = new SelectPrompt<{ value: string }>({
options: allImages.map((img, index) => ({
value: index.toString(),
label: `${img.name} (${new Date(img.stats.mtime).toLocaleString()})`,
})),
render: function () {
const currentIndex = this.cursor;
const currentImageData = imagePreviews[currentIndex];
if (!currentImageData) {
return 'No image selected';
}
const optionsList = allImages
.map((img, index) => {
const isSelected = index === currentIndex;
if (isSelected) {
// Highlight the selected option
const prefix = `${bright}${cyan}❯${reset} `;
const label = `${bright}${yellow}${img.name}${reset} ${dim}(${new Date(img.stats.mtime).toLocaleString()})${reset}`;
return `${prefix}${label}`;
} else {
// Regular styling for non-selected options
const prefix = ' ';
const label = `${img.name} ${dim}(${new Date(img.stats.mtime).toLocaleString()})${reset}`;
return `${prefix}${label}`;
}
})
.join('\n');
// Clear screen and move cursor to top to prevent ghosting
const clearScreen = this.state == 'submit' ? '' : '\x1b[2J\x1b[H';
let output = `${clearScreen}◆ Select Image for Background Removal\n`;
output += indentBlock(optionsList, 2, this.state, false);
output += '\n';
output += indentBlock(
' ' + currentImageData.preview ?? '',
2,
this.state,
false
);
if (this.state !== 'submit') {
output += '\n';
output += indentBlock(
`${dim}Use ↑↓ to select, Enter to confirm, Esc to cancel${reset}`,
2,
this.state
);
}
return output.trim();
},
});
const selectedImageIndex = await selectPrompt.prompt();
if (isCancel(selectedImageIndex)) {
cancel('Background removal cancelled.');
process.exit(0);
}
selectedImage = allImages[parseInt(selectedImageIndex as string)];
log.step(`Selected image: ${selectedImage.name}`);
}
// Show the selected image
const currentSequence = await getImageSequence(selectedImage.path, 500);
log.step('Current image:');
log.step(currentSequence ?? '');
const s = spinner();
s.start('Removing background...');
try {
// Upload the selected image to fal.ai storage
const imageFileToUpload = new File(
[fs.readFileSync(selectedImage.path)],
selectedImage.name,
{
type: 'image/png',
}
);
const imageUrl = await falClient.storage.upload(imageFileToUpload);
// Use the background removal model
const result = await falClient.subscribe('fal-ai/bria/background/remove', {
input: {
image_url: imageUrl,
},
logs: true,
onQueueUpdate: update => {
if (update.status === 'IN_PROGRESS') {
s.message(
`Processing... ${update.logs?.map(log => log.message).join(' ')}`
);
}
},
});
s.stop('Background removed');
// Save the processed image
const processedFilename = `image-${Date.now()}-rmbg.png`;
const processedPath = path.join(outputDir, processedFilename);
// Download the processed image
const imageResponse = await fetch(result.data.image.url);
const imageBuffer = await imageResponse.arrayBuffer();
fs.writeFileSync(processedPath, Buffer.from(imageBuffer));
log.step(`Processed image saved to ${processedFilename}`);
// Display the processed image
const processedSequence = await getImageSequence(processedPath, 500);
log.step(processedSequence ?? '');
} catch (error) {
s.stop('Background removal failed');
log.error(`Failed to remove background: ${error}`);
process.exit(1);
}
process.exit(0);
}
async function handleVisualCommand(argv: any) {
// Validate API key for commands that need it
validateApiKey();