-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdev.log
More file actions
1515 lines (1512 loc) Β· 109 KB
/
Copy pathdev.log
File metadata and controls
1515 lines (1512 loc) Β· 109 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
> voice-api@1.0.0 dev
> next dev
β² Next.js 14.2.30
- Local: http://localhost:3000
β Starting...
β Ready in 1253ms
β Compiling / ...
β Compiled / in 560ms (276 modules)
GET /_next/static/webpack/01a9ca36bdf9a171.webpack.hot-update.json 404 in 670ms
β Fast Refresh had to perform a full reload. Read more: https://nextjs.org/docs/messages/fast-refresh-reload
GET / 200 in 667ms
GET / 200 in 8ms
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 17ms
GET /sw.js 404 in 26ms
β Compiled /api/aws-status in 52ms (75 modules)
GET /api/aws-status 200 in 1045ms
GET /sw.js 404 in 14ms
GET /api/aws-status 200 in 648ms
GET / 200 in 17ms
GET /api/aws-status 200 in 526ms
GET / 200 in 15ms
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 17ms
GET /api/aws-status 200 in 562ms
GET /api/aws-status 200 in 539ms
GET /sw.js 404 in 19ms
β Compiled /api/upload in 112ms (82 modules)
Upload request received
Starting Rekognition for: s3://voice-description-api-input-production-pmhnxlix/f9e92c96-7ac9-49e2-b525-68dba8266bbb Request Method GET Status Code 404 Not Found
β Rekognition error: InvalidS3ObjectException: Unable to get object metadata from S3. Check object key, region and/or access permissions.
at de_InvalidS3ObjectExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-rekognition/dist-cjs/index.js:2946:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-rekognition/dist-cjs/index.js:2801:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async handler (webpack-internal:///(api)/./pages/api/upload.ts:169:35)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20
at async Span.traceAsyncFn (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/trace/trace.js:154:20) {
'$fault': 'client',
'$metadata': {
httpStatusCode: 400,
requestId: 'b8bcbc5a-86a0-4e12-8f7e-ae18f2c52657',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
},
Code: 'InvalidS3ObjectException',
Logref: undefined,
__type: 'InvalidS3ObjectException'
}
POST /api/upload 500 in 604ms
GET / 200 in 26ms
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 11ms
GET /api/aws-status 200 in 637ms
GET /api/aws-status 200 in 527ms
GET /sw.js 404 in 8ms
Upload request received
Starting Rekognition for: s3://speechlab-test-files-public/BarackObamaKeynote.mp4
β
Rekognition segmentation started: 1f9c345644961e348bc796924dc2f6db920e1406dfee943e24d80f97fec5aa16
Upload successful, job created: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
POST /api/upload 200 in 371ms
β Compiled /api/status/[jobId] in 58ms (84 modules)
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 78ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 6ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 7ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 7ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 7ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 10ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 15ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 4ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 3ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 7ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 6ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 10ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 3ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 6ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 2ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 20ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 7ms
GET / 200 in 53ms
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 6ms
GET /api/aws-status 200 in 655ms
GET /api/aws-status 200 in 518ms
GET /sw.js 404 in 24ms
β Compiled in 732ms (304 modules)
GET / 200 in 146ms
π Status request for job: 54b9f91e-73d0-4aa2-bbd3-ed3274ffd299
GET /api/status/54b9f91e-73d0-4aa2-bbd3-ed3274ffd299 404 in 24ms
GET /api/aws-status 200 in 884ms
GET /api/aws-status 200 in 551ms
GET / 200 in 26ms
GET /api/aws-status 200 in 557ms
GET /api/aws-status 200 in 829ms
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 31ms
Upload request received
Starting Rekognition for: s3://speechlab-test-files-public/BarackObamaKeynote.mp4
β
Rekognition segmentation started: bbd57dfd9433b1fb8a0864ed102c46792ffbb0f55b3de27320699efeb3992732
Upload successful, job created: 946b1357-0d53-4138-8d03-3414011b17ff
POST /api/upload 200 in 513ms
π Status request for job: 946b1357-0d53-4138-8d03-3414011b17ff
Current job status: processing, step: segmentation
π Processing pipeline for job 946b1357-0d53-4138-8d03-3414011b17ff, step: segmentation
πΉ Checking Rekognition job bbd57dfd9433b1fb8a0864ed102c46792ffbb0f55b3de27320699efeb3992732
Rekognition status: IN_PROGRESS
GET /api/status/946b1357-0d53-4138-8d03-3414011b17ff 200 in 319ms
Upload request received
Starting Rekognition for: s3://speechlab-test-files-public/BarackObamaKeynote.mp4
β
Rekognition segmentation started: f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Upload successful, job created: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
POST /api/upload 200 in 164ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 75ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 81ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 71ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 76ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 78ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 78ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 81ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 76ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 79ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 79ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 77ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 92ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 94ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 80ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 85ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 87ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 90ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 83ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 92ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: IN_PROGRESS
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 94ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: segmentation
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: segmentation
πΉ Checking Rekognition job f8753dad4cc15d1203c2ab85d91c0769fd91a3fb0c239335933aaaa5785e6e49
Rekognition status: SUCCEEDED
β
Found 9 video segments
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 201ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: analysis
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: analysis
π§ Starting Bedrock analysis for 5 segments
Analyzing segment 1: 0.033s - 1s
β Bedrock error for segment 1: AccessDeniedException: You don't have access to the model with the specified model ID.
at de_AccessDeniedExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1603:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1552:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async processRealAWSPipeline (webpack-internal:///(api)/./pages/api/status/[jobId].ts:125:45)
at async handler (webpack-internal:///(api)/./pages/api/status/[jobId].ts:276:19)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20 {
'$fault': 'client',
'$metadata': {
httpStatusCode: 403,
requestId: '73aee48a-0edd-471e-8b52-9d0e23daead5',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
}
}
Analyzing segment 2: 1.034s - 81.514s
β Bedrock error for segment 2: AccessDeniedException: You don't have access to the model with the specified model ID.
at de_AccessDeniedExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1603:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1552:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async processRealAWSPipeline (webpack-internal:///(api)/./pages/api/status/[jobId].ts:125:45)
at async handler (webpack-internal:///(api)/./pages/api/status/[jobId].ts:276:19)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20 {
'$fault': 'client',
'$metadata': {
httpStatusCode: 403,
requestId: '26d4547f-4cf4-45ee-8f63-29cc06e91587',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
}
}
Analyzing segment 3: 81.547s - 92.825s
β Bedrock error for segment 3: AccessDeniedException: You don't have access to the model with the specified model ID.
at de_AccessDeniedExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1603:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1552:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async processRealAWSPipeline (webpack-internal:///(api)/./pages/api/status/[jobId].ts:125:45)
at async handler (webpack-internal:///(api)/./pages/api/status/[jobId].ts:276:19)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20 {
'$fault': 'client',
'$metadata': {
httpStatusCode: 403,
requestId: 'd3b85720-79af-412f-9222-6cca5b9c493c',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
}
}
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 933ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: processing, step: synthesis
π Processing pipeline for job 4a86c12e-debf-44ed-9556-d24b5e9f4a64, step: synthesis
π€ Starting Polly synthesis for 3 descriptions
Synthesizing text: At 0 seconds: Scene 1: Video content from 0.033 to 1 seconds ... At 1 seconds: Scene 2: Video conten...
β
Audio and text saved to S3
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 1404ms
π Status request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
Current job status: completed, step: completed
GET /api/status/4a86c12e-debf-44ed-9556-d24b5e9f4a64 200 in 9ms
β Compiled /api/results/[jobId]/audio in 192ms (84 modules)
π΅ Audio result request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
π§ Downloading audio from S3: 4a86c12e-debf-44ed-9556-d24b5e9f4a64/audio.mp3
β
Retrieved audio file (123740 bytes)
GET /api/results/4a86c12e-debf-44ed-9556-d24b5e9f4a64/audio 200 in 781ms
β Compiled /api/results/[jobId]/text in 71ms (80 modules)
π Text result request for job: 4a86c12e-debf-44ed-9556-d24b5e9f4a64
π₯ Downloading text from S3: 4a86c12e-debf-44ed-9556-d24b5e9f4a64/description.txt
β
Retrieved text content (202 characters)
GET /api/results/4a86c12e-debf-44ed-9556-d24b5e9f4a64/text 200 in 360ms
β Compiled /api/aws-status in 37ms (74 modules)
GET /api/aws-status 200 in 1088ms
β Compiled in 434ms (218 modules)
β Compiled in 86ms (218 modules)
β Compiled in 69ms (218 modules)
β Compiled /api/upload in 30ms (78 modules)
Upload request received
Starting Rekognition for: s3://speechlab-test-files-public/BarackObamaKeynote.mp4
β Compiled in 36ms (218 modules)
β
Rekognition segmentation started: a24e9bd56d9b84330ec69d898490fec93394ce890066913e452b9bdde1aafb2d
Upload successful, job created: 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74
POST /api/upload 200 in 538ms
β Compiled in 86ms (218 modules)
β Compiled /api/status/[jobId] in 226ms (82 modules)
π Status request for job: 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74
Current job status: processing, step: segmentation
π Processing pipeline for job 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74, step: segmentation
πΉ Checking Rekognition job a24e9bd56d9b84330ec69d898490fec93394ce890066913e452b9bdde1aafb2d
Rekognition status: IN_PROGRESS
GET /api/status/8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74 200 in 622ms
β Compiled in 43ms (218 modules)
β Compiled in 232ms (300 modules)
β Compiled in 1725ms (300 modules)
π Status request for job: 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74
Current job status: processing, step: segmentation
π Processing pipeline for job 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74, step: segmentation
πΉ Checking Rekognition job a24e9bd56d9b84330ec69d898490fec93394ce890066913e452b9bdde1aafb2d
Rekognition status: SUCCEEDED
β
Found 9 video segments
GET /api/status/8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74 200 in 444ms
β Compiled in 167ms (218 modules)
π Status request for job: 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74
Current job status: processing, step: analysis
π Processing pipeline for job 8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.033s - 1s
π¬ Extracting frame at 0.5165s from s3://speechlab-test-files-public/BarackObamaKeynote.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/BarackObamaKeynote.mp4
β
Extracted video data (34778584 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
GET / 200 in 53ms
β Compiling /_error ...
β Compiled /_error in 1752ms (276 modules)
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 1777ms
β Compiled /api/aws-status in 92ms (75 modules)
GET /api/aws-status 200 in 960ms
GET /api/aws-status 200 in 969ms
β Compiled /api/upload in 128ms (83 modules)
Upload request received
Starting Rekognition for: s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β Compiled in 50ms (219 modules)
β
Rekognition segmentation started: 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Upload successful, job created: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
POST /api/upload 200 in 613ms
β Compiled /api/status/[jobId] in 165ms (304 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 440ms
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
β Compiled in 46ms (219 modules)
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 98ms
β Compiled in 114ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 85ms
β Compiled in 70ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 87ms
β Compiled in 104ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 132ms
β Compiled in 120ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 118ms
β Compiled in 62ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 85ms
β Compiled in 71ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 97ms
β Compiled in 60ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 97ms
β Compiled in 257ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 64ms
β Compiled in 48ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 73ms
β Compiled in 76ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 75ms
β Compiled in 59ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 75ms
β Compiled in 57ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 90ms
β Compiled in 182ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 92ms
β Compiled in 59ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 72ms
β Compiled in 75ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 83ms
β Compiled in 64ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 76ms
β Compiled in 55ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 94ms
β Compiled in 121ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 88ms
β Compiled in 228ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 77ms
β Compiled in 58ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 73ms
β Compiled in 96ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 66ms
β Compiled in 61ms (219 modules)
GET /api/status/8ce0286f-ccdd-4a41-9f2c-4a2c1c6b3c74 200 in 120143ms
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 63ms
β Compiled in 168ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 86ms
β Compiled in 97ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 71ms
β Compiled in 43ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 68ms
β Compiled in 66ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 99ms
β Compiled in 70ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 62ms
β Compiled in 66ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 70ms
β Compiled in 109ms (219 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 86ms
β Compiled in 48ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 82ms
β Compiled in 29ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 76ms
β Compiled in 36ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 80ms
β Compiled in 39ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 86ms
β Compiled in 51ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 70ms
β Compiled in 49ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: IN_PROGRESS
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 70ms
β Compiled in 57ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: segmentation
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: segmentation
πΉ Checking Rekognition job 22257503166d4499439c611ed8fc5b02a77359e5184267a28cb914610a158cc0
Rekognition status: SUCCEEDED
β
Found 142 video segments
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 278ms
β Compiled in 61ms (218 modules)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: analysis
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: analysis
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: analysis
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: analysis
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β Bedrock/frame extraction error for segment 1: ValidationException: Input is too long.
at de_ValidationExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1750:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1567:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async processRealAWSPipeline (webpack-internal:///(api)/./pages/api/status/[jobId].ts:145:49)
at async handler (webpack-internal:///(api)/./pages/api/status/[jobId].ts:403:19)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20 {
'$fault': 'client',
'$metadata': {
httpStatusCode: 400,
requestId: '4f644c08-c93e-4e69-8e28-302e5c92934c',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
}
}
β Claude 3 error for segment 1: AccessDeniedException: You don't have access to the model with the specified model ID.
at de_AccessDeniedExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1603:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1552:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async processRealAWSPipeline (webpack-internal:///(api)/./pages/api/status/[jobId].ts:199:48)
at async handler (webpack-internal:///(api)/./pages/api/status/[jobId].ts:403:19)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20 {
'$fault': 'client',
'$metadata': {
httpStatusCode: 403,
requestId: 'f0c0420d-8283-4ccf-b43c-38485394f98d',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
}
}
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
β Titan also failed for segment 1: AccessDeniedException: You don't have access to the model with the specified model ID.
at de_AccessDeniedExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1603:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1552:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/core/dist-cjs/index.js:193:18
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-retry/dist-cjs/index.js:320:38
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/middleware-logger/dist-cjs/index.js:33:22
at async processRealAWSPipeline (webpack-internal:///(api)/./pages/api/status/[jobId].ts:219:51)
at async handler (webpack-internal:///(api)/./pages/api/status/[jobId].ts:403:19)
at async K (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:2871)
at async U.render (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/compiled/next-server/pages-api.runtime.dev.js:21:3955)
at async DevServer.runApi (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:603:9)
at async NextNodeServer.handleCatchallRenderRequest (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/next-server.js:269:37)
at async DevServer.handleRequestImpl (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/base-server.js:818:17)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/next/dist/server/dev/next-dev-server.js:339:20 {
'$fault': 'client',
'$metadata': {
httpStatusCode: 403,
requestId: 'd6f4912d-b404-4da7-bbf3-d17e1d1d80da',
extendedRequestId: undefined,
cfId: undefined,
attempts: 1,
totalRetryDelay: 0
}
}
Analyzing segment 2: 2.002s - 14.347s
π¬ Extracting frame at 8.174499999999998s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: analysis
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 2)
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b
Current job status: processing, step: analysis
π Processing pipeline for job 2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 76460ms
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 72369ms
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 78473ms
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 80476ms
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 74479ms
GET /api/status/2ec9ced5-fd3e-49b7-967a-27a7e15b3c8b 200 in 82478ms
GET / 200 in 39ms
β Compiling /_error ...
β Compiled /_error in 681ms (276 modules)
GET /.well-known/appspecific/com.chrome.devtools.json 404 in 715ms
β Compiled /api/aws-status in 44ms (75 modules)
GET /api/aws-status 200 in 906ms
GET /api/aws-status 200 in 913ms
β Compiled /api/upload in 41ms (83 modules)
Upload request received
Starting Rekognition for: s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β Compiled in 60ms (219 modules)
β
Rekognition segmentation started: 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Upload successful, job created: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
POST /api/upload 200 in 488ms
β Compiled /api/status/[jobId] in 350ms (304 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 670ms
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
β Compiled in 88ms (219 modules)
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 90ms
β Compiled in 35ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 86ms
β Compiled in 33ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 79ms
β Compiled in 52ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 77ms
β Compiled in 160ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 106ms
β Compiled in 65ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 89ms
β Compiled in 63ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 77ms
β Compiled in 53ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 84ms
β Compiled in 65ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 78ms
β Compiled in 78ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 84ms
β Compiled in 105ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 102ms
β Compiled in 64ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: IN_PROGRESS
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 82ms
β Compiled in 58ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: segmentation
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: segmentation
πΉ Checking Rekognition job 546ebbafeba4f7b40628218bf7f43a54acd073ae18f957a63dfe3f8cef317a9f
Rekognition status: SUCCEEDED
β
Found 142 video segments
GET /api/status/dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0 200 in 273ms
β Compiled in 87ms (219 modules)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: analysis
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: analysis
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: analysis
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: analysis
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
π Status request for job: dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0
Current job status: processing, step: analysis
π Processing pipeline for job dbbb8cd1-4e96-4a4b-972d-785ff37bf7b0, step: analysis
π§ Starting Bedrock Nova Pro analysis for 5 segments
Analyzing segment 1: 0.083s - 1.96s
π¬ Extracting frame at 1.0215s from s3://speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
π₯ Downloading video segment from S3: speechlab-test-files-public/Fire_Drill_-_The_Office_US.mp4
β
Extracted video data (35481982 bytes) for Nova Pro analysis
π§ Sending video data to Nova Pro for analysis (segment 1)
β Bedrock/frame extraction error for segment 1: ValidationException: Input is too long.
at de_ValidationExceptionRes (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1750:21)
at de_CommandError (/Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@aws-sdk/client-bedrock-runtime/dist-cjs/index.js:1567:19)
at process.processTicksAndRejections (node:internal/process/task_queues:105:5)
at async /Users/ryanmedlin/speechlab/voiceDescriptionAPI/node_modules/@smithy/middleware-serde/dist-cjs/index.js:36:20