-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcli.js
More file actions
executable file
·820 lines (707 loc) · 22.8 KB
/
cli.js
File metadata and controls
executable file
·820 lines (707 loc) · 22.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
#!/usr/bin/env node
/**
* Interactive CLI for Educational Content Production Pipeline
*
* Provides a user-friendly interface to coordinate all services:
* - Article Generation
* - PDF Service
* - Video Scripter Service
* - TTS Service
* - Video Generation Service
*/
import { readFileSync, existsSync, readdirSync } from 'fs';
import { join, dirname, basename } from 'path';
import { fileURLToPath } from 'url';
import { execSync } from 'child_process';
import { createInterface } from 'readline';
const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);
// Colors for console output
const colors = {
reset: '\x1b[0m',
bright: '\x1b[1m',
dim: '\x1b[2m',
red: '\x1b[31m',
green: '\x1b[32m',
yellow: '\x1b[33m',
blue: '\x1b[34m',
magenta: '\x1b[35m',
cyan: '\x1b[36m',
};
// Paths
const PATHS = {
articles: join(__dirname, 'article-generation', 'articles'),
pdfOutput: join(__dirname, 'pdf-service', 'output'),
scriptOutput: join(__dirname, 'video-scripter-service', 'output'),
ttsOutput: join(__dirname, 'tts-service', 'out'),
videoOutput: join(__dirname, 'video-generation-service', 'output'),
};
// Readline interface
const rl = createInterface({
input: process.stdin,
output: process.stdout,
});
/**
* Helper function to ask questions
*/
function question(query) {
return new Promise((resolve) => {
rl.question(query, resolve);
});
}
/**
* Clear console
*/
function clearConsole() {
console.clear();
console.log('\n');
}
/**
* Print colored text
*/
function colorPrint(text, color = 'reset') {
console.log(`${colors[color]}${text}${colors.reset}`);
}
/**
* Print header
*/
function printHeader() {
clearConsole();
colorPrint('═'.repeat(70), 'cyan');
colorPrint(' Educational Content Production Pipeline - Interactive CLI', 'bright');
colorPrint('═'.repeat(70), 'cyan');
console.log();
}
/**
* Print menu
*/
function printMenu() {
colorPrint('📋 Main Menu', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
console.log(' 1. 📝 Generate New Article');
console.log(' 2. 📄 Generate PDF from Article');
console.log(' 3. 📋 Generate Video Script from Article');
console.log(' 4. 🎙️ Generate TTS Audio from Script');
console.log(' 5. 🎬 Generate Video from Script + Audio');
console.log(' 6. 🚀 Full Pipeline (Article → Script → Audio → Video)');
console.log(' 7. 📊 Check Service Status');
console.log(' 8. 📁 List Available Articles');
console.log(' 9. 📁 List Generated Files');
console.log(' 0. ❌ Exit');
console.log();
}
/**
* Check if Ollama is running
*/
async function checkOllamaStatus() {
try {
const response = await fetch('http://localhost:11434/api/tags');
return response.ok;
} catch (error) {
return false;
}
}
/**
* Check if Python virtual environment exists
*/
function checkPythonVenv(serviceName) {
const venvPath = join(__dirname, serviceName, 'venv');
return existsSync(venvPath);
}
/**
* Check service status
*/
async function checkServiceStatus() {
printHeader();
colorPrint('📊 Service Status Check', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
// Check Ollama
colorPrint('Checking Ollama service...', 'dim');
const ollamaRunning = await checkOllamaStatus();
if (ollamaRunning) {
colorPrint(' ✅ Ollama is running', 'green');
} else {
colorPrint(' ❌ Ollama is not running', 'red');
colorPrint(' Start it with: ollama serve', 'yellow');
}
console.log();
// Check Node.js services
colorPrint('Checking Node.js services...', 'dim');
const nodeServices = ['article-generation', 'video-scripter-service', 'pdf-service'];
nodeServices.forEach(service => {
const packagePath = join(__dirname, service, 'package.json');
if (existsSync(packagePath)) {
colorPrint(` ✅ ${service} (Node.js)`, 'green');
} else {
colorPrint(` ❌ ${service} not found`, 'red');
}
});
console.log();
// Check Python services
colorPrint('Checking Python services...', 'dim');
const pythonServices = [
{ name: 'tts-service', path: 'tts-service' },
{ name: 'video-generation-service', path: 'video-generation-service' },
];
pythonServices.forEach(service => {
const venvExists = checkPythonVenv(service.path);
if (venvExists) {
colorPrint(` ✅ ${service.name} (Python venv ready)`, 'green');
} else {
colorPrint(` ⚠️ ${service.name} (venv not found, run setup.sh)`, 'yellow');
}
});
console.log();
await question('\nPress Enter to continue...');
}
/**
* List available articles
*/
async function listArticles() {
printHeader();
colorPrint('📁 Available Articles', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
if (!existsSync(PATHS.articles)) {
colorPrint(' No articles directory found.', 'yellow');
await question('\nPress Enter to continue...');
return [];
}
const files = readdirSync(PATHS.articles)
.filter(file => file.endsWith('.md'))
.map(file => basename(file, '.md'));
if (files.length === 0) {
colorPrint(' No articles found. Generate one first!', 'yellow');
await question('\nPress Enter to continue...');
return [];
}
files.forEach((file, index) => {
console.log(` ${index + 1}. ${file}`);
});
console.log();
await question('Press Enter to continue...');
return files;
}
/**
* Select article from list
*/
async function selectArticle() {
const articles = [];
if (!existsSync(PATHS.articles)) {
return null;
}
const files = readdirSync(PATHS.articles)
.filter(file => file.endsWith('.md'))
.map(file => basename(file, '.md'));
if (files.length === 0) {
return null;
}
printHeader();
colorPrint('📁 Select Article', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
files.forEach((file, index) => {
console.log(` ${index + 1}. ${file}`);
});
console.log();
const choice = await question('Select article number: ');
const index = parseInt(choice) - 1;
if (index >= 0 && index < files.length) {
return files[index] + '.md';
}
return null;
}
/**
* Generate new article
*/
async function generateArticle() {
printHeader();
colorPrint('📝 Generate New Article', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
// Check Ollama
colorPrint('Checking Ollama service...', 'dim');
const ollamaRunning = await checkOllamaStatus();
if (!ollamaRunning) {
colorPrint(' ❌ Ollama is not running!', 'red');
colorPrint(' Please start Ollama: ollama serve', 'yellow');
await question('\nPress Enter to continue...');
return;
}
colorPrint(' ✅ Ollama is running', 'green');
console.log();
const topic = await question('Article topic: ');
if (!topic.trim()) {
colorPrint('\n❌ Topic cannot be empty!', 'red');
await question('Press Enter to continue...');
return;
}
console.log('\nTemplate types:');
console.log(' 1. educational - Educational technical article');
console.log(' 2. tutorial - Step-by-step tutorial');
console.log(' 3. deep-dive - Deep technical analysis');
const skeletonChoice = await question('\nSelect template type (1-3) [1]: ');
const skeletonMap = {
'1': 'educational',
'2': 'tutorial',
'3': 'deep-dive',
'': 'educational',
};
const skeleton = skeletonMap[skeletonChoice] || 'educational';
const timeInput = await question('Reading time (minutes) [8]: ');
const time = timeInput.trim() || '8';
console.log();
colorPrint('🚀 Generating article...', 'cyan');
console.log(' This may take a few minutes. Please wait...\n');
try {
// Change to article-generation directory
const articleGenDir = join(__dirname, 'article-generation');
process.chdir(articleGenDir);
// Run generate:single command
const command = `npm run generate:single -- --topic "${topic.trim()}" --skeleton ${skeleton} --time ${time}`;
execSync(command, { stdio: 'inherit' });
colorPrint('\n✅ Article generated successfully!', 'green');
} catch (error) {
colorPrint('\n❌ Error generating article!', 'red');
console.error(error.message);
} finally {
process.chdir(__dirname);
await question('\nPress Enter to continue...');
}
}
/**
* Generate PDF
*/
async function generatePDF() {
const articleFile = await selectArticle();
if (!articleFile) {
colorPrint('\n❌ No article selected!', 'red');
await question('Press Enter to continue...');
return;
}
printHeader();
colorPrint('📄 Generating PDF...', 'cyan');
console.log(` Article: ${articleFile}\n`);
try {
const pdfServiceDir = join(__dirname, 'pdf-service');
process.chdir(pdfServiceDir);
const command = `npm run convert:single ${articleFile}`;
execSync(command, { stdio: 'inherit' });
colorPrint('\n✅ PDF generated successfully!', 'green');
} catch (error) {
colorPrint('\n❌ Error generating PDF!', 'red');
console.error(error.message);
} finally {
process.chdir(__dirname);
await question('\nPress Enter to continue...');
}
}
/**
* Generate Video Script
*/
async function generateVideoScript() {
const articleFile = await selectArticle();
if (!articleFile) {
colorPrint('\n❌ No article selected!', 'red');
await question('Press Enter to continue...');
return;
}
printHeader();
colorPrint('📋 Generating Video Script...', 'cyan');
console.log(` Article: ${articleFile}\n`);
// Check Ollama
const ollamaRunning = await checkOllamaStatus();
if (!ollamaRunning) {
colorPrint(' ❌ Ollama is not running!', 'red');
colorPrint(' Please start Ollama: ollama serve', 'yellow');
await question('\nPress Enter to continue...');
return;
}
console.log('🚀 Generating script...');
console.log(' This may take a few minutes. Please wait...\n');
try {
const scriptServiceDir = join(__dirname, 'video-scripter-service');
process.chdir(scriptServiceDir);
const command = `npm run generate:single ${articleFile}`;
execSync(command, { stdio: 'inherit' });
colorPrint('\n✅ Video script generated successfully!', 'green');
} catch (error) {
colorPrint('\n❌ Error generating script!', 'red');
console.error(error.message);
} finally {
process.chdir(__dirname);
await question('\nPress Enter to continue...');
}
}
/**
* Generate TTS Audio
*/
async function generateTTS() {
printHeader();
colorPrint('🎙️ Generate TTS Audio', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
// List available scripts
if (!existsSync(PATHS.scriptOutput)) {
colorPrint(' No scripts found. Generate one first!', 'yellow');
await question('\nPress Enter to continue...');
return;
}
const scriptFiles = readdirSync(PATHS.scriptOutput)
.filter(file => file.endsWith('.txt'));
if (scriptFiles.length === 0) {
colorPrint(' No scripts found. Generate one first!', 'yellow');
await question('\nPress Enter to continue...');
return;
}
console.log('Available scripts:');
scriptFiles.forEach((file, index) => {
console.log(` ${index + 1}. ${file}`);
});
console.log();
const choice = await question('Select script number: ');
const index = parseInt(choice) - 1;
if (index < 0 || index >= scriptFiles.length) {
colorPrint('\n❌ Invalid selection!', 'red');
await question('Press Enter to continue...');
return;
}
const scriptFile = scriptFiles[index];
const scriptPath = join(PATHS.scriptOutput, scriptFile);
const articleName = basename(scriptFile, '_script.txt');
const outputPath = join(PATHS.ttsOutput, `${articleName}_script.wav`);
// Check Python venv
const ttsServiceDir = join(__dirname, 'tts-service');
const venvExists = checkPythonVenv('tts-service');
if (!venvExists) {
colorPrint('\n⚠️ Python virtual environment not found!', 'yellow');
colorPrint(' Run: cd tts-service && python3 -m venv venv && source venv/bin/activate && pip install coqui-tts', 'dim');
await question('\nPress Enter to continue...');
return;
}
// Ask for CPU mode if GPU memory issues
console.log();
const useCpu = await question('Use CPU mode? (y/N) [N]: ');
const cpuFlag = useCpu.trim().toLowerCase() === 'y' ? '--cpu' : '';
printHeader();
colorPrint('🎙️ Generating TTS Audio...', 'cyan');
console.log(` Script: ${scriptFile}`);
console.log(` Output: ${articleName}_script.wav`);
console.log(` Mode: ${cpuFlag ? 'CPU (slower but safer)' : 'GPU (faster, requires free GPU memory)'}`);
console.log('\n This may take several minutes. Please wait...\n');
try {
process.chdir(ttsServiceDir);
const pythonCmd = join(ttsServiceDir, 'venv', 'bin', 'python');
const command = `${pythonCmd} generate_unified.py "${scriptPath}" "${outputPath}" ${cpuFlag}`.trim();
execSync(command, { stdio: 'inherit' });
colorPrint('\n✅ TTS audio generated successfully!', 'green');
} catch (error) {
colorPrint('\n❌ Error generating TTS audio!', 'red');
console.error(error.message);
} finally {
process.chdir(__dirname);
await question('\nPress Enter to continue...');
}
}
/**
* Generate Video
*/
async function generateVideo() {
printHeader();
colorPrint('🎬 Generate Video', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
// List available scripts
if (!existsSync(PATHS.scriptOutput)) {
colorPrint(' No scripts found. Generate one first!', 'yellow');
await question('\nPress Enter to continue...');
return;
}
const scriptFiles = readdirSync(PATHS.scriptOutput)
.filter(file => file.endsWith('.txt'));
if (scriptFiles.length === 0) {
colorPrint(' No scripts found. Generate one first!', 'yellow');
await question('\nPress Enter to continue...');
return;
}
console.log('Available scripts:');
scriptFiles.forEach((file, index) => {
console.log(` ${index + 1}. ${file}`);
});
console.log();
const choice = await question('Select script number: ');
const index = parseInt(choice) - 1;
if (index < 0 || index >= scriptFiles.length) {
colorPrint('\n❌ Invalid selection!', 'red');
await question('Press Enter to continue...');
return;
}
const scriptFile = scriptFiles[index];
const scriptPath = join(PATHS.scriptOutput, scriptFile);
const articleName = basename(scriptFile, '_script.txt');
// Check for corresponding audio file
const audioFile = `${articleName}_script.wav`;
const audioPath = join(PATHS.ttsOutput, audioFile);
if (!existsSync(audioPath)) {
colorPrint(`\n⚠️ Audio file not found: ${audioFile}`, 'yellow');
colorPrint(' Please generate TTS audio first!', 'yellow');
await question('\nPress Enter to continue...');
return;
}
const outputPath = join(PATHS.videoOutput, `${articleName}.mp4`);
// Check Python venv
const videoServiceDir = join(__dirname, 'video-generation-service');
const venvExists = checkPythonVenv('video-generation-service');
if (!venvExists) {
colorPrint('\n⚠️ Python virtual environment not found!', 'yellow');
colorPrint(' Run: cd video-generation-service && ./setup.sh', 'dim');
await question('\nPress Enter to continue...');
return;
}
printHeader();
colorPrint('🎬 Generating Video...', 'cyan');
console.log(` Script: ${scriptFile}`);
console.log(` Audio: ${audioFile}`);
console.log(` Output: ${articleName}.mp4`);
console.log('\n This may take several minutes. Please wait...\n');
try {
process.chdir(videoServiceDir);
const generateScript = join(videoServiceDir, 'generate.sh');
const command = `${generateScript} "${scriptPath}" "${audioPath}" "${outputPath}"`;
execSync(command, { stdio: 'inherit' });
colorPrint('\n✅ Video generated successfully!', 'green');
} catch (error) {
colorPrint('\n❌ Error generating video!', 'red');
console.error(error.message);
} finally {
process.chdir(__dirname);
await question('\nPress Enter to continue...');
}
}
/**
* Full Pipeline
*/
async function runFullPipeline() {
printHeader();
colorPrint('🚀 Full Pipeline: Article → Script → Audio → Video', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
const articleFile = await selectArticle();
if (!articleFile) {
colorPrint('\n❌ No article selected!', 'red');
await question('Press Enter to continue...');
return;
}
const articleName = basename(articleFile, '.md');
const scriptFile = `${articleName}_script.txt`;
const audioFile = `${articleName}_script.wav`;
const videoFile = `${articleName}.mp4`;
printHeader();
colorPrint('🚀 Running Full Pipeline...', 'cyan');
console.log(` Article: ${articleFile}`);
console.log(` → Script: ${scriptFile}`);
console.log(` → Audio: ${audioFile}`);
console.log(` → Video: ${videoFile}`);
console.log();
// Step 1: Generate Script
colorPrint('Step 1/3: Generating video script...', 'yellow');
try {
const scriptServiceDir = join(__dirname, 'video-scripter-service');
process.chdir(scriptServiceDir);
execSync(`npm run generate:single ${articleFile}`, { stdio: 'inherit' });
colorPrint(' ✅ Script generated', 'green');
} catch (error) {
colorPrint(' ❌ Error generating script!', 'red');
process.chdir(__dirname);
await question('\nPress Enter to continue...');
return;
}
// Step 2: Generate Audio
console.log();
colorPrint('Step 2/3: Generating TTS audio...', 'yellow');
// Use CPU mode by default in full pipeline to avoid GPU memory issues
const cpuFlag = '--cpu';
try {
const scriptPath = join(PATHS.scriptOutput, scriptFile);
const audioPath = join(PATHS.ttsOutput, audioFile);
const ttsServiceDir = join(__dirname, 'tts-service');
process.chdir(ttsServiceDir);
const pythonCmd = join(ttsServiceDir, 'venv', 'bin', 'python');
execSync(`${pythonCmd} generate_unified.py "${scriptPath}" "${audioPath}" ${cpuFlag}`, { stdio: 'inherit' });
colorPrint(' ✅ Audio generated', 'green');
} catch (error) {
colorPrint(' ❌ Error generating audio!', 'red');
process.chdir(__dirname);
await question('\nPress Enter to continue...');
return;
}
// Step 3: Generate Video
console.log();
colorPrint('Step 3/3: Generating video...', 'yellow');
try {
const scriptPath = join(PATHS.scriptOutput, scriptFile);
const audioPath = join(PATHS.ttsOutput, audioFile);
const outputPath = join(PATHS.videoOutput, videoFile);
const videoServiceDir = join(__dirname, 'video-generation-service');
process.chdir(videoServiceDir);
const generateScript = join(videoServiceDir, 'generate.sh');
execSync(`${generateScript} "${scriptPath}" "${audioPath}" "${outputPath}"`, { stdio: 'inherit' });
colorPrint(' ✅ Video generated', 'green');
} catch (error) {
colorPrint(' ❌ Error generating video!', 'red');
process.chdir(__dirname);
await question('\nPress Enter to continue...');
return;
}
process.chdir(__dirname);
console.log();
colorPrint('═'.repeat(70), 'green');
colorPrint('✅ Full Pipeline Completed Successfully!', 'green');
colorPrint('═'.repeat(70), 'green');
console.log();
colorPrint(`📁 Generated Files:`, 'bright');
console.log(` - Script: ${PATHS.scriptOutput}/${scriptFile}`);
console.log(` - Audio: ${PATHS.ttsOutput}/${audioFile}`);
console.log(` - Video: ${PATHS.videoOutput}/${videoFile}`);
console.log();
await question('Press Enter to continue...');
}
/**
* List generated files
*/
async function listGeneratedFiles() {
printHeader();
colorPrint('📁 Generated Files', 'bright');
colorPrint('─'.repeat(70), 'dim');
console.log();
// Articles
colorPrint('📝 Articles:', 'cyan');
if (existsSync(PATHS.articles)) {
const articles = readdirSync(PATHS.articles).filter(f => f.endsWith('.md'));
if (articles.length > 0) {
articles.forEach(article => console.log(` - ${article}`));
} else {
console.log(' (none)');
}
} else {
console.log(' (directory not found)');
}
console.log();
// PDFs
colorPrint('📄 PDFs:', 'cyan');
if (existsSync(PATHS.pdfOutput)) {
const pdfs = readdirSync(PATHS.pdfOutput).filter(f => f.endsWith('.pdf'));
if (pdfs.length > 0) {
pdfs.forEach(pdf => console.log(` - ${pdf}`));
} else {
console.log(' (none)');
}
} else {
console.log(' (directory not found)');
}
console.log();
// Scripts
colorPrint('📋 Scripts:', 'cyan');
if (existsSync(PATHS.scriptOutput)) {
const scripts = readdirSync(PATHS.scriptOutput).filter(f => f.endsWith('.txt'));
if (scripts.length > 0) {
scripts.forEach(script => console.log(` - ${script}`));
} else {
console.log(' (none)');
}
} else {
console.log(' (directory not found)');
}
console.log();
// Audio
colorPrint('🎙️ Audio Files:', 'cyan');
if (existsSync(PATHS.ttsOutput)) {
const audioFiles = readdirSync(PATHS.ttsOutput).filter(f => f.endsWith('.wav'));
if (audioFiles.length > 0) {
audioFiles.forEach(audio => console.log(` - ${audio}`));
} else {
console.log(' (none)');
}
} else {
console.log(' (directory not found)');
}
console.log();
// Videos
colorPrint('🎬 Videos:', 'cyan');
if (existsSync(PATHS.videoOutput)) {
const videos = readdirSync(PATHS.videoOutput).filter(f => f.endsWith('.mp4'));
if (videos.length > 0) {
videos.forEach(video => console.log(` - ${video}`));
} else {
console.log(' (none)');
}
} else {
console.log(' (directory not found)');
}
console.log();
await question('Press Enter to continue...');
}
/**
* Main loop
*/
async function main() {
let running = true;
while (running) {
printHeader();
printMenu();
const choice = await question('Select option (0-9): ');
switch (choice.trim()) {
case '1':
await generateArticle();
break;
case '2':
await generatePDF();
break;
case '3':
await generateVideoScript();
break;
case '4':
await generateTTS();
break;
case '5':
await generateVideo();
break;
case '6':
await runFullPipeline();
break;
case '7':
await checkServiceStatus();
break;
case '8':
await listArticles();
break;
case '9':
await listGeneratedFiles();
break;
case '0':
running = false;
break;
default:
colorPrint('\n❌ Invalid option! Please select 0-9.', 'red');
await question('Press Enter to continue...');
}
}
console.log();
colorPrint('👋 Thank you for using Content Production Pipeline!', 'cyan');
console.log();
rl.close();
}
// Handle Ctrl+C gracefully
process.on('SIGINT', () => {
console.log('\n\n👋 Goodbye!');
rl.close();
process.exit(0);
});
// Run main function
main().catch((error) => {
console.error('Fatal error:', error);
rl.close();
process.exit(1);
});