@viji-dev/core 0.3.25 → 0.3.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/artist-dts-p5.js +1 -1
- package/dist/artist-dts.js +1 -1
- package/dist/artist-global.d.ts +6 -43
- package/dist/artist-jsdoc.d.ts +3 -1
- package/dist/assets/cv-tasks.worker.js +108 -32
- package/dist/assets/{viji.worker-Zg128woJ.js → viji.worker-jTmB7qoQ.js} +546 -209
- package/dist/assets/viji.worker-jTmB7qoQ.js.map +1 -0
- package/dist/docs-api.js +2145 -513
- package/dist/{essentia-wasm.web-Dq7KVAx1.js → essentia-wasm.web-DtvIO6D8.js} +2 -2
- package/dist/{essentia-wasm.web-Dq7KVAx1.js.map → essentia-wasm.web-DtvIO6D8.js.map} +1 -1
- package/dist/{index-C6fMmKQj.js → index-9YDi9UBP.js} +1439 -1200
- package/dist/index-9YDi9UBP.js.map +1 -0
- package/dist/index.d.ts +153 -133
- package/dist/index.js +1 -1
- package/dist/shader-uniforms.js +540 -60
- package/package.json +1 -1
- package/dist/assets/viji.worker-Zg128woJ.js.map +0 -1
- package/dist/index-C6fMmKQj.js.map +0 -1
package/dist/shader-uniforms.js
CHANGED
|
@@ -217,27 +217,27 @@ export const shaderUniforms = {
|
|
|
217
217
|
"u_audioLow": {
|
|
218
218
|
"type": "float",
|
|
219
219
|
"category": "Audio",
|
|
220
|
-
"description": "Low 20-
|
|
220
|
+
"description": "Low 20-120 Hz (0-1)"
|
|
221
221
|
},
|
|
222
222
|
"u_audioLowMid": {
|
|
223
223
|
"type": "float",
|
|
224
224
|
"category": "Audio",
|
|
225
|
-
"description": "Low-mid
|
|
225
|
+
"description": "Low-mid 120-400 Hz (0-1)"
|
|
226
226
|
},
|
|
227
227
|
"u_audioMid": {
|
|
228
228
|
"type": "float",
|
|
229
229
|
"category": "Audio",
|
|
230
|
-
"description": "Mid 400-
|
|
230
|
+
"description": "Mid 400-1600 Hz (0-1)"
|
|
231
231
|
},
|
|
232
232
|
"u_audioHighMid": {
|
|
233
233
|
"type": "float",
|
|
234
234
|
"category": "Audio",
|
|
235
|
-
"description": "High-mid
|
|
235
|
+
"description": "High-mid 1600-6000 Hz (0-1)"
|
|
236
236
|
},
|
|
237
237
|
"u_audioHigh": {
|
|
238
238
|
"type": "float",
|
|
239
239
|
"category": "Audio",
|
|
240
|
-
"description": "High
|
|
240
|
+
"description": "High 6000-16000 Hz (0-1)"
|
|
241
241
|
},
|
|
242
242
|
"u_audioLowSmoothed": {
|
|
243
243
|
"type": "float",
|
|
@@ -352,7 +352,7 @@ export const shaderUniforms = {
|
|
|
352
352
|
"u_audioFFT": {
|
|
353
353
|
"type": "sampler2D",
|
|
354
354
|
"category": "Audio",
|
|
355
|
-
"description": "FFT frequency spectrum (
|
|
355
|
+
"description": "FFT frequency spectrum (1024 bins, 0-255)"
|
|
356
356
|
},
|
|
357
357
|
"u_audioWaveform": {
|
|
358
358
|
"type": "sampler2D",
|
|
@@ -374,130 +374,130 @@ export const shaderUniforms = {
|
|
|
374
374
|
"category": "Video",
|
|
375
375
|
"description": "Video frame rate in frames per second"
|
|
376
376
|
},
|
|
377
|
-
"
|
|
377
|
+
"u_videoStreamCount": {
|
|
378
378
|
"type": "int",
|
|
379
379
|
"category": "Video",
|
|
380
380
|
"description": "Number of available compositor input streams (0-8)"
|
|
381
381
|
},
|
|
382
|
-
"
|
|
382
|
+
"u_videoStream0": {
|
|
383
383
|
"type": "sampler2D",
|
|
384
384
|
"category": "Video",
|
|
385
|
-
"description": "
|
|
385
|
+
"description": "Video stream 0 texture"
|
|
386
386
|
},
|
|
387
|
-
"
|
|
387
|
+
"u_videoStream1": {
|
|
388
388
|
"type": "sampler2D",
|
|
389
389
|
"category": "Video",
|
|
390
|
-
"description": "
|
|
390
|
+
"description": "Video stream 1 texture"
|
|
391
391
|
},
|
|
392
|
-
"
|
|
392
|
+
"u_videoStream2": {
|
|
393
393
|
"type": "sampler2D",
|
|
394
394
|
"category": "Video",
|
|
395
|
-
"description": "
|
|
395
|
+
"description": "Video stream 2 texture"
|
|
396
396
|
},
|
|
397
|
-
"
|
|
397
|
+
"u_videoStream3": {
|
|
398
398
|
"type": "sampler2D",
|
|
399
399
|
"category": "Video",
|
|
400
|
-
"description": "
|
|
400
|
+
"description": "Video stream 3 texture"
|
|
401
401
|
},
|
|
402
|
-
"
|
|
402
|
+
"u_videoStream4": {
|
|
403
403
|
"type": "sampler2D",
|
|
404
404
|
"category": "Video",
|
|
405
|
-
"description": "
|
|
405
|
+
"description": "Video stream 4 texture"
|
|
406
406
|
},
|
|
407
|
-
"
|
|
407
|
+
"u_videoStream5": {
|
|
408
408
|
"type": "sampler2D",
|
|
409
409
|
"category": "Video",
|
|
410
|
-
"description": "
|
|
410
|
+
"description": "Video stream 5 texture"
|
|
411
411
|
},
|
|
412
|
-
"
|
|
412
|
+
"u_videoStream6": {
|
|
413
413
|
"type": "sampler2D",
|
|
414
414
|
"category": "Video",
|
|
415
|
-
"description": "
|
|
415
|
+
"description": "Video stream 6 texture"
|
|
416
416
|
},
|
|
417
|
-
"
|
|
417
|
+
"u_videoStream7": {
|
|
418
418
|
"type": "sampler2D",
|
|
419
419
|
"category": "Video",
|
|
420
|
-
"description": "
|
|
420
|
+
"description": "Video stream 7 texture"
|
|
421
421
|
},
|
|
422
|
-
"
|
|
422
|
+
"u_videoStream0Resolution": {
|
|
423
423
|
"type": "vec2",
|
|
424
424
|
"category": "Video",
|
|
425
|
-
"description": "
|
|
425
|
+
"description": "Video stream 0 resolution"
|
|
426
426
|
},
|
|
427
|
-
"
|
|
427
|
+
"u_videoStream1Resolution": {
|
|
428
428
|
"type": "vec2",
|
|
429
429
|
"category": "Video",
|
|
430
|
-
"description": "
|
|
430
|
+
"description": "Video stream 1 resolution"
|
|
431
431
|
},
|
|
432
|
-
"
|
|
432
|
+
"u_videoStream2Resolution": {
|
|
433
433
|
"type": "vec2",
|
|
434
434
|
"category": "Video",
|
|
435
|
-
"description": "
|
|
435
|
+
"description": "Video stream 2 resolution"
|
|
436
436
|
},
|
|
437
|
-
"
|
|
437
|
+
"u_videoStream3Resolution": {
|
|
438
438
|
"type": "vec2",
|
|
439
439
|
"category": "Video",
|
|
440
|
-
"description": "
|
|
440
|
+
"description": "Video stream 3 resolution"
|
|
441
441
|
},
|
|
442
|
-
"
|
|
442
|
+
"u_videoStream4Resolution": {
|
|
443
443
|
"type": "vec2",
|
|
444
444
|
"category": "Video",
|
|
445
|
-
"description": "
|
|
445
|
+
"description": "Video stream 4 resolution"
|
|
446
446
|
},
|
|
447
|
-
"
|
|
447
|
+
"u_videoStream5Resolution": {
|
|
448
448
|
"type": "vec2",
|
|
449
449
|
"category": "Video",
|
|
450
|
-
"description": "
|
|
450
|
+
"description": "Video stream 5 resolution"
|
|
451
451
|
},
|
|
452
|
-
"
|
|
452
|
+
"u_videoStream6Resolution": {
|
|
453
453
|
"type": "vec2",
|
|
454
454
|
"category": "Video",
|
|
455
|
-
"description": "
|
|
455
|
+
"description": "Video stream 6 resolution"
|
|
456
456
|
},
|
|
457
|
-
"
|
|
457
|
+
"u_videoStream7Resolution": {
|
|
458
458
|
"type": "vec2",
|
|
459
459
|
"category": "Video",
|
|
460
|
-
"description": "
|
|
460
|
+
"description": "Video stream 7 resolution"
|
|
461
461
|
},
|
|
462
|
-
"
|
|
462
|
+
"u_videoStream0Connected": {
|
|
463
463
|
"type": "bool",
|
|
464
464
|
"category": "Video",
|
|
465
|
-
"description": "
|
|
465
|
+
"description": "Video stream 0 connection status"
|
|
466
466
|
},
|
|
467
|
-
"
|
|
467
|
+
"u_videoStream1Connected": {
|
|
468
468
|
"type": "bool",
|
|
469
469
|
"category": "Video",
|
|
470
|
-
"description": "
|
|
470
|
+
"description": "Video stream 1 connection status"
|
|
471
471
|
},
|
|
472
|
-
"
|
|
472
|
+
"u_videoStream2Connected": {
|
|
473
473
|
"type": "bool",
|
|
474
474
|
"category": "Video",
|
|
475
|
-
"description": "
|
|
475
|
+
"description": "Video stream 2 connection status"
|
|
476
476
|
},
|
|
477
|
-
"
|
|
477
|
+
"u_videoStream3Connected": {
|
|
478
478
|
"type": "bool",
|
|
479
479
|
"category": "Video",
|
|
480
|
-
"description": "
|
|
480
|
+
"description": "Video stream 3 connection status"
|
|
481
481
|
},
|
|
482
|
-
"
|
|
482
|
+
"u_videoStream4Connected": {
|
|
483
483
|
"type": "bool",
|
|
484
484
|
"category": "Video",
|
|
485
|
-
"description": "
|
|
485
|
+
"description": "Video stream 4 connection status"
|
|
486
486
|
},
|
|
487
|
-
"
|
|
487
|
+
"u_videoStream5Connected": {
|
|
488
488
|
"type": "bool",
|
|
489
489
|
"category": "Video",
|
|
490
|
-
"description": "
|
|
490
|
+
"description": "Video stream 5 connection status"
|
|
491
491
|
},
|
|
492
|
-
"
|
|
492
|
+
"u_videoStream6Connected": {
|
|
493
493
|
"type": "bool",
|
|
494
494
|
"category": "Video",
|
|
495
|
-
"description": "
|
|
495
|
+
"description": "Video stream 6 connection status"
|
|
496
496
|
},
|
|
497
|
-
"
|
|
497
|
+
"u_videoStream7Connected": {
|
|
498
498
|
"type": "bool",
|
|
499
499
|
"category": "Video",
|
|
500
|
-
"description": "
|
|
500
|
+
"description": "Video stream 7 connection status"
|
|
501
501
|
},
|
|
502
502
|
"u_deviceCount": {
|
|
503
503
|
"type": "int",
|
|
@@ -624,6 +624,371 @@ export const shaderUniforms = {
|
|
|
624
624
|
"category": "Device Video Support (device cameras)",
|
|
625
625
|
"description": "Device 7 connection status"
|
|
626
626
|
},
|
|
627
|
+
"u_audioStreamCount": {
|
|
628
|
+
"type": "int",
|
|
629
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
630
|
+
"description": "Number of additional audio streams (0-8)"
|
|
631
|
+
},
|
|
632
|
+
"u_audioStream0Connected": {
|
|
633
|
+
"type": "bool",
|
|
634
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
635
|
+
"description": "Stream 0 connection status"
|
|
636
|
+
},
|
|
637
|
+
"u_audioStream0Volume": {
|
|
638
|
+
"type": "float",
|
|
639
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
640
|
+
"description": "Stream 0 volume (0-1)"
|
|
641
|
+
},
|
|
642
|
+
"u_audioStream0Low": {
|
|
643
|
+
"type": "float",
|
|
644
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
645
|
+
"description": "Stream 0 low band (0-1)"
|
|
646
|
+
},
|
|
647
|
+
"u_audioStream0LowMid": {
|
|
648
|
+
"type": "float",
|
|
649
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
650
|
+
"description": "Stream 0 low-mid band (0-1)"
|
|
651
|
+
},
|
|
652
|
+
"u_audioStream0Mid": {
|
|
653
|
+
"type": "float",
|
|
654
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
655
|
+
"description": "Stream 0 mid band (0-1)"
|
|
656
|
+
},
|
|
657
|
+
"u_audioStream0HighMid": {
|
|
658
|
+
"type": "float",
|
|
659
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
660
|
+
"description": "Stream 0 high-mid band (0-1)"
|
|
661
|
+
},
|
|
662
|
+
"u_audioStream0High": {
|
|
663
|
+
"type": "float",
|
|
664
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
665
|
+
"description": "Stream 0 high band (0-1)"
|
|
666
|
+
},
|
|
667
|
+
"u_audioStream0Brightness": {
|
|
668
|
+
"type": "float",
|
|
669
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
670
|
+
"description": "Stream 0 spectral brightness (0-1)"
|
|
671
|
+
},
|
|
672
|
+
"u_audioStream0Flatness": {
|
|
673
|
+
"type": "float",
|
|
674
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
675
|
+
"description": "Stream 0 spectral flatness (0-1)"
|
|
676
|
+
},
|
|
677
|
+
"u_audioStream1Connected": {
|
|
678
|
+
"type": "bool",
|
|
679
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
680
|
+
"description": "u_audioStream1Connected uniform"
|
|
681
|
+
},
|
|
682
|
+
"u_audioStream1Volume": {
|
|
683
|
+
"type": "float",
|
|
684
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
685
|
+
"description": "u_audioStream1Volume uniform"
|
|
686
|
+
},
|
|
687
|
+
"u_audioStream1Low": {
|
|
688
|
+
"type": "float",
|
|
689
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
690
|
+
"description": "u_audioStream1Low uniform"
|
|
691
|
+
},
|
|
692
|
+
"u_audioStream1LowMid": {
|
|
693
|
+
"type": "float",
|
|
694
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
695
|
+
"description": "u_audioStream1LowMid uniform"
|
|
696
|
+
},
|
|
697
|
+
"u_audioStream1Mid": {
|
|
698
|
+
"type": "float",
|
|
699
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
700
|
+
"description": "u_audioStream1Mid uniform"
|
|
701
|
+
},
|
|
702
|
+
"u_audioStream1HighMid": {
|
|
703
|
+
"type": "float",
|
|
704
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
705
|
+
"description": "u_audioStream1HighMid uniform"
|
|
706
|
+
},
|
|
707
|
+
"u_audioStream1High": {
|
|
708
|
+
"type": "float",
|
|
709
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
710
|
+
"description": "u_audioStream1High uniform"
|
|
711
|
+
},
|
|
712
|
+
"u_audioStream1Brightness": {
|
|
713
|
+
"type": "float",
|
|
714
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
715
|
+
"description": "u_audioStream1Brightness uniform"
|
|
716
|
+
},
|
|
717
|
+
"u_audioStream1Flatness": {
|
|
718
|
+
"type": "float",
|
|
719
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
720
|
+
"description": "u_audioStream1Flatness uniform"
|
|
721
|
+
},
|
|
722
|
+
"u_audioStream2Connected": {
|
|
723
|
+
"type": "bool",
|
|
724
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
725
|
+
"description": "u_audioStream2Connected uniform"
|
|
726
|
+
},
|
|
727
|
+
"u_audioStream2Volume": {
|
|
728
|
+
"type": "float",
|
|
729
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
730
|
+
"description": "u_audioStream2Volume uniform"
|
|
731
|
+
},
|
|
732
|
+
"u_audioStream2Low": {
|
|
733
|
+
"type": "float",
|
|
734
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
735
|
+
"description": "u_audioStream2Low uniform"
|
|
736
|
+
},
|
|
737
|
+
"u_audioStream2LowMid": {
|
|
738
|
+
"type": "float",
|
|
739
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
740
|
+
"description": "u_audioStream2LowMid uniform"
|
|
741
|
+
},
|
|
742
|
+
"u_audioStream2Mid": {
|
|
743
|
+
"type": "float",
|
|
744
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
745
|
+
"description": "u_audioStream2Mid uniform"
|
|
746
|
+
},
|
|
747
|
+
"u_audioStream2HighMid": {
|
|
748
|
+
"type": "float",
|
|
749
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
750
|
+
"description": "u_audioStream2HighMid uniform"
|
|
751
|
+
},
|
|
752
|
+
"u_audioStream2High": {
|
|
753
|
+
"type": "float",
|
|
754
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
755
|
+
"description": "u_audioStream2High uniform"
|
|
756
|
+
},
|
|
757
|
+
"u_audioStream2Brightness": {
|
|
758
|
+
"type": "float",
|
|
759
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
760
|
+
"description": "u_audioStream2Brightness uniform"
|
|
761
|
+
},
|
|
762
|
+
"u_audioStream2Flatness": {
|
|
763
|
+
"type": "float",
|
|
764
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
765
|
+
"description": "u_audioStream2Flatness uniform"
|
|
766
|
+
},
|
|
767
|
+
"u_audioStream3Connected": {
|
|
768
|
+
"type": "bool",
|
|
769
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
770
|
+
"description": "u_audioStream3Connected uniform"
|
|
771
|
+
},
|
|
772
|
+
"u_audioStream3Volume": {
|
|
773
|
+
"type": "float",
|
|
774
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
775
|
+
"description": "u_audioStream3Volume uniform"
|
|
776
|
+
},
|
|
777
|
+
"u_audioStream3Low": {
|
|
778
|
+
"type": "float",
|
|
779
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
780
|
+
"description": "u_audioStream3Low uniform"
|
|
781
|
+
},
|
|
782
|
+
"u_audioStream3LowMid": {
|
|
783
|
+
"type": "float",
|
|
784
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
785
|
+
"description": "u_audioStream3LowMid uniform"
|
|
786
|
+
},
|
|
787
|
+
"u_audioStream3Mid": {
|
|
788
|
+
"type": "float",
|
|
789
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
790
|
+
"description": "u_audioStream3Mid uniform"
|
|
791
|
+
},
|
|
792
|
+
"u_audioStream3HighMid": {
|
|
793
|
+
"type": "float",
|
|
794
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
795
|
+
"description": "u_audioStream3HighMid uniform"
|
|
796
|
+
},
|
|
797
|
+
"u_audioStream3High": {
|
|
798
|
+
"type": "float",
|
|
799
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
800
|
+
"description": "u_audioStream3High uniform"
|
|
801
|
+
},
|
|
802
|
+
"u_audioStream3Brightness": {
|
|
803
|
+
"type": "float",
|
|
804
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
805
|
+
"description": "u_audioStream3Brightness uniform"
|
|
806
|
+
},
|
|
807
|
+
"u_audioStream3Flatness": {
|
|
808
|
+
"type": "float",
|
|
809
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
810
|
+
"description": "u_audioStream3Flatness uniform"
|
|
811
|
+
},
|
|
812
|
+
"u_audioStream4Connected": {
|
|
813
|
+
"type": "bool",
|
|
814
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
815
|
+
"description": "u_audioStream4Connected uniform"
|
|
816
|
+
},
|
|
817
|
+
"u_audioStream4Volume": {
|
|
818
|
+
"type": "float",
|
|
819
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
820
|
+
"description": "u_audioStream4Volume uniform"
|
|
821
|
+
},
|
|
822
|
+
"u_audioStream4Low": {
|
|
823
|
+
"type": "float",
|
|
824
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
825
|
+
"description": "u_audioStream4Low uniform"
|
|
826
|
+
},
|
|
827
|
+
"u_audioStream4LowMid": {
|
|
828
|
+
"type": "float",
|
|
829
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
830
|
+
"description": "u_audioStream4LowMid uniform"
|
|
831
|
+
},
|
|
832
|
+
"u_audioStream4Mid": {
|
|
833
|
+
"type": "float",
|
|
834
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
835
|
+
"description": "u_audioStream4Mid uniform"
|
|
836
|
+
},
|
|
837
|
+
"u_audioStream4HighMid": {
|
|
838
|
+
"type": "float",
|
|
839
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
840
|
+
"description": "u_audioStream4HighMid uniform"
|
|
841
|
+
},
|
|
842
|
+
"u_audioStream4High": {
|
|
843
|
+
"type": "float",
|
|
844
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
845
|
+
"description": "u_audioStream4High uniform"
|
|
846
|
+
},
|
|
847
|
+
"u_audioStream4Brightness": {
|
|
848
|
+
"type": "float",
|
|
849
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
850
|
+
"description": "u_audioStream4Brightness uniform"
|
|
851
|
+
},
|
|
852
|
+
"u_audioStream4Flatness": {
|
|
853
|
+
"type": "float",
|
|
854
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
855
|
+
"description": "u_audioStream4Flatness uniform"
|
|
856
|
+
},
|
|
857
|
+
"u_audioStream5Connected": {
|
|
858
|
+
"type": "bool",
|
|
859
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
860
|
+
"description": "u_audioStream5Connected uniform"
|
|
861
|
+
},
|
|
862
|
+
"u_audioStream5Volume": {
|
|
863
|
+
"type": "float",
|
|
864
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
865
|
+
"description": "u_audioStream5Volume uniform"
|
|
866
|
+
},
|
|
867
|
+
"u_audioStream5Low": {
|
|
868
|
+
"type": "float",
|
|
869
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
870
|
+
"description": "u_audioStream5Low uniform"
|
|
871
|
+
},
|
|
872
|
+
"u_audioStream5LowMid": {
|
|
873
|
+
"type": "float",
|
|
874
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
875
|
+
"description": "u_audioStream5LowMid uniform"
|
|
876
|
+
},
|
|
877
|
+
"u_audioStream5Mid": {
|
|
878
|
+
"type": "float",
|
|
879
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
880
|
+
"description": "u_audioStream5Mid uniform"
|
|
881
|
+
},
|
|
882
|
+
"u_audioStream5HighMid": {
|
|
883
|
+
"type": "float",
|
|
884
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
885
|
+
"description": "u_audioStream5HighMid uniform"
|
|
886
|
+
},
|
|
887
|
+
"u_audioStream5High": {
|
|
888
|
+
"type": "float",
|
|
889
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
890
|
+
"description": "u_audioStream5High uniform"
|
|
891
|
+
},
|
|
892
|
+
"u_audioStream5Brightness": {
|
|
893
|
+
"type": "float",
|
|
894
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
895
|
+
"description": "u_audioStream5Brightness uniform"
|
|
896
|
+
},
|
|
897
|
+
"u_audioStream5Flatness": {
|
|
898
|
+
"type": "float",
|
|
899
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
900
|
+
"description": "u_audioStream5Flatness uniform"
|
|
901
|
+
},
|
|
902
|
+
"u_audioStream6Connected": {
|
|
903
|
+
"type": "bool",
|
|
904
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
905
|
+
"description": "u_audioStream6Connected uniform"
|
|
906
|
+
},
|
|
907
|
+
"u_audioStream6Volume": {
|
|
908
|
+
"type": "float",
|
|
909
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
910
|
+
"description": "u_audioStream6Volume uniform"
|
|
911
|
+
},
|
|
912
|
+
"u_audioStream6Low": {
|
|
913
|
+
"type": "float",
|
|
914
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
915
|
+
"description": "u_audioStream6Low uniform"
|
|
916
|
+
},
|
|
917
|
+
"u_audioStream6LowMid": {
|
|
918
|
+
"type": "float",
|
|
919
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
920
|
+
"description": "u_audioStream6LowMid uniform"
|
|
921
|
+
},
|
|
922
|
+
"u_audioStream6Mid": {
|
|
923
|
+
"type": "float",
|
|
924
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
925
|
+
"description": "u_audioStream6Mid uniform"
|
|
926
|
+
},
|
|
927
|
+
"u_audioStream6HighMid": {
|
|
928
|
+
"type": "float",
|
|
929
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
930
|
+
"description": "u_audioStream6HighMid uniform"
|
|
931
|
+
},
|
|
932
|
+
"u_audioStream6High": {
|
|
933
|
+
"type": "float",
|
|
934
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
935
|
+
"description": "u_audioStream6High uniform"
|
|
936
|
+
},
|
|
937
|
+
"u_audioStream6Brightness": {
|
|
938
|
+
"type": "float",
|
|
939
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
940
|
+
"description": "u_audioStream6Brightness uniform"
|
|
941
|
+
},
|
|
942
|
+
"u_audioStream6Flatness": {
|
|
943
|
+
"type": "float",
|
|
944
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
945
|
+
"description": "u_audioStream6Flatness uniform"
|
|
946
|
+
},
|
|
947
|
+
"u_audioStream7Connected": {
|
|
948
|
+
"type": "bool",
|
|
949
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
950
|
+
"description": "u_audioStream7Connected uniform"
|
|
951
|
+
},
|
|
952
|
+
"u_audioStream7Volume": {
|
|
953
|
+
"type": "float",
|
|
954
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
955
|
+
"description": "u_audioStream7Volume uniform"
|
|
956
|
+
},
|
|
957
|
+
"u_audioStream7Low": {
|
|
958
|
+
"type": "float",
|
|
959
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
960
|
+
"description": "u_audioStream7Low uniform"
|
|
961
|
+
},
|
|
962
|
+
"u_audioStream7LowMid": {
|
|
963
|
+
"type": "float",
|
|
964
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
965
|
+
"description": "u_audioStream7LowMid uniform"
|
|
966
|
+
},
|
|
967
|
+
"u_audioStream7Mid": {
|
|
968
|
+
"type": "float",
|
|
969
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
970
|
+
"description": "u_audioStream7Mid uniform"
|
|
971
|
+
},
|
|
972
|
+
"u_audioStream7HighMid": {
|
|
973
|
+
"type": "float",
|
|
974
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
975
|
+
"description": "u_audioStream7HighMid uniform"
|
|
976
|
+
},
|
|
977
|
+
"u_audioStream7High": {
|
|
978
|
+
"type": "float",
|
|
979
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
980
|
+
"description": "u_audioStream7High uniform"
|
|
981
|
+
},
|
|
982
|
+
"u_audioStream7Brightness": {
|
|
983
|
+
"type": "float",
|
|
984
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
985
|
+
"description": "u_audioStream7Brightness uniform"
|
|
986
|
+
},
|
|
987
|
+
"u_audioStream7Flatness": {
|
|
988
|
+
"type": "float",
|
|
989
|
+
"category": "Additional Audio Streams (lightweight analysis, no beat/FFT)",
|
|
990
|
+
"description": "u_audioStream7Flatness uniform"
|
|
991
|
+
},
|
|
627
992
|
"u_faceCount": {
|
|
628
993
|
"type": "int",
|
|
629
994
|
"category": "CV",
|
|
@@ -959,6 +1324,26 @@ export const shaderUniforms = {
|
|
|
959
1324
|
"category": "CV",
|
|
960
1325
|
"description": "Right hand palm position (x, y, z)"
|
|
961
1326
|
},
|
|
1327
|
+
"u_leftHandConfidence": {
|
|
1328
|
+
"type": "float",
|
|
1329
|
+
"category": "CV",
|
|
1330
|
+
"description": "Left hand detection confidence (0-1)"
|
|
1331
|
+
},
|
|
1332
|
+
"u_rightHandConfidence": {
|
|
1333
|
+
"type": "float",
|
|
1334
|
+
"category": "CV",
|
|
1335
|
+
"description": "Right hand detection confidence (0-1)"
|
|
1336
|
+
},
|
|
1337
|
+
"u_leftHandBounds": {
|
|
1338
|
+
"type": "vec4",
|
|
1339
|
+
"category": "CV",
|
|
1340
|
+
"description": "Left hand bounding box (x, y, width, height) normalized 0-1"
|
|
1341
|
+
},
|
|
1342
|
+
"u_rightHandBounds": {
|
|
1343
|
+
"type": "vec4",
|
|
1344
|
+
"category": "CV",
|
|
1345
|
+
"description": "Right hand bounding box (x, y, width, height) normalized 0-1"
|
|
1346
|
+
},
|
|
962
1347
|
"u_leftHandFist": {
|
|
963
1348
|
"type": "float",
|
|
964
1349
|
"category": "CV",
|
|
@@ -969,6 +1354,31 @@ export const shaderUniforms = {
|
|
|
969
1354
|
"category": "CV",
|
|
970
1355
|
"description": "Left hand open palm gesture confidence (0-1)"
|
|
971
1356
|
},
|
|
1357
|
+
"u_leftHandPeace": {
|
|
1358
|
+
"type": "float",
|
|
1359
|
+
"category": "CV",
|
|
1360
|
+
"description": "Left hand peace/victory gesture confidence (0-1)"
|
|
1361
|
+
},
|
|
1362
|
+
"u_leftHandThumbsUp": {
|
|
1363
|
+
"type": "float",
|
|
1364
|
+
"category": "CV",
|
|
1365
|
+
"description": "Left hand thumbs up gesture confidence (0-1)"
|
|
1366
|
+
},
|
|
1367
|
+
"u_leftHandThumbsDown": {
|
|
1368
|
+
"type": "float",
|
|
1369
|
+
"category": "CV",
|
|
1370
|
+
"description": "Left hand thumbs down gesture confidence (0-1)"
|
|
1371
|
+
},
|
|
1372
|
+
"u_leftHandPointing": {
|
|
1373
|
+
"type": "float",
|
|
1374
|
+
"category": "CV",
|
|
1375
|
+
"description": "Left hand pointing gesture confidence (0-1)"
|
|
1376
|
+
},
|
|
1377
|
+
"u_leftHandILoveYou": {
|
|
1378
|
+
"type": "float",
|
|
1379
|
+
"category": "CV",
|
|
1380
|
+
"description": "Left hand I-love-you gesture confidence (0-1)"
|
|
1381
|
+
},
|
|
972
1382
|
"u_rightHandFist": {
|
|
973
1383
|
"type": "float",
|
|
974
1384
|
"category": "CV",
|
|
@@ -979,35 +1389,105 @@ export const shaderUniforms = {
|
|
|
979
1389
|
"category": "CV",
|
|
980
1390
|
"description": "Right hand open palm gesture confidence (0-1)"
|
|
981
1391
|
},
|
|
1392
|
+
"u_rightHandPeace": {
|
|
1393
|
+
"type": "float",
|
|
1394
|
+
"category": "CV",
|
|
1395
|
+
"description": "Right hand peace/victory gesture confidence (0-1)"
|
|
1396
|
+
},
|
|
1397
|
+
"u_rightHandThumbsUp": {
|
|
1398
|
+
"type": "float",
|
|
1399
|
+
"category": "CV",
|
|
1400
|
+
"description": "Right hand thumbs up gesture confidence (0-1)"
|
|
1401
|
+
},
|
|
1402
|
+
"u_rightHandThumbsDown": {
|
|
1403
|
+
"type": "float",
|
|
1404
|
+
"category": "CV",
|
|
1405
|
+
"description": "Right hand thumbs down gesture confidence (0-1)"
|
|
1406
|
+
},
|
|
1407
|
+
"u_rightHandPointing": {
|
|
1408
|
+
"type": "float",
|
|
1409
|
+
"category": "CV",
|
|
1410
|
+
"description": "Right hand pointing gesture confidence (0-1)"
|
|
1411
|
+
},
|
|
1412
|
+
"u_rightHandILoveYou": {
|
|
1413
|
+
"type": "float",
|
|
1414
|
+
"category": "CV",
|
|
1415
|
+
"description": "Right hand I-love-you gesture confidence (0-1)"
|
|
1416
|
+
},
|
|
982
1417
|
"u_poseDetected": {
|
|
983
1418
|
"type": "bool",
|
|
984
1419
|
"category": "CV",
|
|
985
1420
|
"description": "True if a pose is currently detected"
|
|
986
1421
|
},
|
|
1422
|
+
"u_poseConfidence": {
|
|
1423
|
+
"type": "float",
|
|
1424
|
+
"category": "CV",
|
|
1425
|
+
"description": "Pose detection confidence (0-1)"
|
|
1426
|
+
},
|
|
987
1427
|
"u_nosePosition": {
|
|
988
1428
|
"type": "vec2",
|
|
989
1429
|
"category": "CV",
|
|
990
|
-
"description": "Nose landmark position
|
|
1430
|
+
"description": "Nose landmark position (normalized 0-1)"
|
|
1431
|
+
},
|
|
1432
|
+
"u_leftShoulderPosition": {
|
|
1433
|
+
"type": "vec2",
|
|
1434
|
+
"category": "CV",
|
|
1435
|
+
"description": "Left shoulder position (normalized 0-1)"
|
|
1436
|
+
},
|
|
1437
|
+
"u_rightShoulderPosition": {
|
|
1438
|
+
"type": "vec2",
|
|
1439
|
+
"category": "CV",
|
|
1440
|
+
"description": "Right shoulder position (normalized 0-1)"
|
|
1441
|
+
},
|
|
1442
|
+
"u_leftElbowPosition": {
|
|
1443
|
+
"type": "vec2",
|
|
1444
|
+
"category": "CV",
|
|
1445
|
+
"description": "Left elbow position (normalized 0-1)"
|
|
1446
|
+
},
|
|
1447
|
+
"u_rightElbowPosition": {
|
|
1448
|
+
"type": "vec2",
|
|
1449
|
+
"category": "CV",
|
|
1450
|
+
"description": "Right elbow position (normalized 0-1)"
|
|
991
1451
|
},
|
|
992
1452
|
"u_leftWristPosition": {
|
|
993
1453
|
"type": "vec2",
|
|
994
1454
|
"category": "CV",
|
|
995
|
-
"description": "Left wrist
|
|
1455
|
+
"description": "Left wrist position (normalized 0-1)"
|
|
996
1456
|
},
|
|
997
1457
|
"u_rightWristPosition": {
|
|
998
1458
|
"type": "vec2",
|
|
999
1459
|
"category": "CV",
|
|
1000
|
-
"description": "Right wrist
|
|
1460
|
+
"description": "Right wrist position (normalized 0-1)"
|
|
1461
|
+
},
|
|
1462
|
+
"u_leftHipPosition": {
|
|
1463
|
+
"type": "vec2",
|
|
1464
|
+
"category": "CV",
|
|
1465
|
+
"description": "Left hip position (normalized 0-1)"
|
|
1466
|
+
},
|
|
1467
|
+
"u_rightHipPosition": {
|
|
1468
|
+
"type": "vec2",
|
|
1469
|
+
"category": "CV",
|
|
1470
|
+
"description": "Right hip position (normalized 0-1)"
|
|
1471
|
+
},
|
|
1472
|
+
"u_leftKneePosition": {
|
|
1473
|
+
"type": "vec2",
|
|
1474
|
+
"category": "CV",
|
|
1475
|
+
"description": "Left knee position (normalized 0-1)"
|
|
1476
|
+
},
|
|
1477
|
+
"u_rightKneePosition": {
|
|
1478
|
+
"type": "vec2",
|
|
1479
|
+
"category": "CV",
|
|
1480
|
+
"description": "Right knee position (normalized 0-1)"
|
|
1001
1481
|
},
|
|
1002
1482
|
"u_leftAnklePosition": {
|
|
1003
1483
|
"type": "vec2",
|
|
1004
1484
|
"category": "CV",
|
|
1005
|
-
"description": "Left ankle
|
|
1485
|
+
"description": "Left ankle position (normalized 0-1)"
|
|
1006
1486
|
},
|
|
1007
1487
|
"u_rightAnklePosition": {
|
|
1008
1488
|
"type": "vec2",
|
|
1009
1489
|
"category": "CV",
|
|
1010
|
-
"description": "Right ankle
|
|
1490
|
+
"description": "Right ankle position (normalized 0-1)"
|
|
1011
1491
|
},
|
|
1012
1492
|
"u_segmentationMask": {
|
|
1013
1493
|
"type": "sampler2D",
|