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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
//! # OxiMedia — The Sovereign Media Framework
//!
//! A patent-free, memory-safe multimedia processing library written in pure Rust.
//! OxiMedia is the single crate that unifies the entire OxiMedia ecosystem —
//! covering everything from raw codec primitives to broadcast-grade MAM workflows.
//!
//! ## Design Principles
//!
//! - **Patent-Free**: Only royalty-free codecs (AV1, VP9, VP8, Opus, Vorbis, FLAC, PCM)
//! - **Memory Safe**: Pure Rust, `#![forbid(unsafe_code)]` throughout
//! - **Async-First**: Built on Tokio for high-concurrency media pipelines
//! - **Zero-Copy**: Efficient buffer management at every layer
//! - **Feature-Gated**: Pay only for what you use — the default build is lean
//!
//! ## Quick Start
//!
//! Add to `Cargo.toml`:
//!
//! ```toml
//! [dependencies]
//! oximedia = { version = "0.1", features = ["audio", "video"] }
//! ```
//!
//! Then in your code:
//!
//! ```ignore
//! use oximedia::prelude::*;
//!
//! // Probe a media file
//! let format = probe_format(&data)?;
//! println!("Container: {:?}", format);
//! ```
//!
//! ## Feature Flags
//!
//! | Feature | Crates enabled | Purpose |
//! |---------|---------------|---------|
//! | `audio` | `oximedia-audio` | Opus, Vorbis, FLAC, PCM codecs |
//! | `video` | `oximedia-codec` | AV1, VP9, VP8 video codecs |
//! | `graph` | `oximedia-graph` | Filter graph / processing pipeline |
//! | `effects` | `oximedia-effects` | Professional audio effects suite |
//! | `net` | `oximedia-net` | HLS, DASH, SRT, RTMP, WebRTC |
//! | `metering` | `oximedia-metering` | EBU R128, ATSC A/85 loudness |
//! | `normalize` | `oximedia-normalize` | Loudness normalization |
//! | `quality` | `oximedia-quality` | PSNR, SSIM, VMAF, NIQE |
//! | `metadata-ext` | `oximedia-metadata` | ID3v2, XMP, EXIF, IPTC |
//! | `timecode` | `oximedia-timecode` | SMPTE LTC/VITC timecode |
//! | `workflow` | `oximedia-workflow` | DAG workflow orchestration |
//! | `batch` | `oximedia-batch` | Batch job processing engine |
//! | `monitor` | `oximedia-monitor` | System monitoring and alerting |
//! | `lut` | `oximedia-lut` | 1D/3D LUT and HDR pipeline |
//! | `colormgmt` | `oximedia-colormgmt` | ICC, ACES, HDR color management |
//! | `transcode` | `oximedia-transcode` | Full transcoding pipeline |
//! | `subtitle` | `oximedia-subtitle` | SRT, ASS, WebVTT rendering |
//! | `captions` | `oximedia-captions` | Closed caption formats |
//! | `archive` | `oximedia-archive` | Archive verification & preservation |
//! | `dedup` | `oximedia-dedup` | Media deduplication |
//! | `search` | `oximedia-search` | Media search and indexing |
//! | `mam` | `oximedia-mam` | Media Asset Management system |
//! | `scene` | `oximedia-scene` | AI scene understanding |
//! | `shots` | `oximedia-shots` | Shot detection & classification |
//! | `scopes` | `oximedia-scopes` | Broadcast video scopes |
//! | `vfx` | `oximedia-vfx` | Visual effects and compositing |
//! | `image-ext` | `oximedia-image` | Advanced image processing (DPX, EXR, TIFF) |
//! | `watermark` | `oximedia-watermark` | Audio watermarking and forensic detection |
//! | `mir` | `oximedia-mir` | Music Information Retrieval |
//! | `recommend` | `oximedia-recommend` | Content recommendation engine |
//! | `playlist` | `oximedia-playlist` | Broadcast playlist management |
//! | `playout` | `oximedia-playout` | Broadcast playout server |
//! | `rights` | `oximedia-rights` | Digital rights management |
//! | `review` | `oximedia-review` | Collaborative media review |
//! | `restore` | `oximedia-restore` | Audio/video restoration |
//! | `repair` | `oximedia-repair` | Media file repair and recovery |
//! | `multicam` | `oximedia-multicam` | Multi-camera sync and switching |
//! | `stabilize` | `oximedia-stabilize` | Video stabilization |
//! | `cloud` | `oximedia-cloud` | Cloud storage abstraction (S3, Azure, GCS) |
//! | `edl` | `oximedia-edl` | EDL parsing and generation |
//! | `ndi` | `oximedia-ndi` | NDI protocol support |
//! | `imf` | `oximedia-imf` | IMF package support (SMPTE ST 2067) |
//! | `aaf` | `oximedia-aaf` | AAF interchange (SMPTE ST 377-1) |
//! | `timesync` | `oximedia-timesync` | PTP/NTP time synchronization |
//! | `forensics` | `oximedia-forensics` | Media forensics and tampering detection |
//! | `accel` | `oximedia-accel` | Hardware acceleration (Vulkan GPU, CPU fallback) |
//! | `simd` | `oximedia-simd` | SIMD-optimised media kernels (DCT, SAD, blending) |
//! | `switcher` | `oximedia-switcher` | Professional live video switcher |
//! | `timeline` | `oximedia-timeline` | Multi-track timeline editor |
//! | `optimize` | `oximedia-optimize` | Codec optimisation suite (RDO, psychovisual, AQ) |
//! | `profiler` | `oximedia-profiler` | Performance profiling tools |
//! | `renderfarm` | `oximedia-renderfarm` | Distributed render farm coordinator |
//! | `storage` | `oximedia-storage` | Cloud-agnostic object storage (S3, Azure, GCS) |
//! | `collab` | `oximedia-collab` | Real-time CRDT collaborative editing |
//! | `gaming` | `oximedia-gaming` | Game streaming and screen capture |
//! | `virtual-prod` | `oximedia-virtual` | Virtual production and LED wall tools |
//! | `access` | `oximedia-access` | Accessibility (audio description, captions, WCAG) |
//! | `conform` | `oximedia-conform` | Media conforming (EDL/XML/AAF matching) |
//! | `convert` | `oximedia-convert` | Media format conversion utilities |
//! | `automation` | `oximedia-automation` | Broadcast automation and master control |
//! | `clips` | `oximedia-clips` | Professional clip management and logging |
//! | `proxy` | `oximedia-proxy` | Proxy and offline editing workflows |
//! | `presets` | `oximedia-presets` | Encoding preset library (200+ presets) |
//! | `calibrate` | `oximedia-calibrate` | Color calibration and camera profiling |
//! | `denoise` | `oximedia-denoise` | Video denoising (spatial, temporal, hybrid) |
//! | `align` | `oximedia-align` | Multi-camera video alignment and registration |
//! | `analysis` | `oximedia-analysis` | Comprehensive media analysis and QA |
//! | `audiopost` | `oximedia-audiopost` | Audio post-production (ADR, Foley, mixing) |
//! | `qc` | `oximedia-qc` | Broadcast-grade quality control and validation |
//! | `jobs` | `oximedia-jobs` | Job queue and worker management |
//! | `auto` | `oximedia-auto` | Automated video editing and highlight detection |
//! | `edit` | `oximedia-edit` | Video timeline editor with effects |
//! | `routing` | `oximedia-routing` | Signal routing, NMOS IS-04/IS-05/IS-07 |
//! | `audio-analysis` | `oximedia-audio-analysis` | Spectral, voice, music, forensics analysis |
//! | `gpu` | `oximedia-gpu` | WGPU GPU compute (Vulkan, Metal, DX12, WebGPU) |
//! | `packager` | `oximedia-packager` | HLS/DASH adaptive streaming packaging |
//! | `drm` | `oximedia-drm` | CENC, Widevine, PlayReady, FairPlay DRM |
//! | `archive-pro` | `oximedia-archive-pro` | BagIt, OAIS, PREMIS digital preservation |
//! | `distributed` | `oximedia-distributed` | Distributed multi-node encoding |
//! | `farm` | `oximedia-farm` | Render farm coordinator |
//! | `dolbyvision` | `oximedia-dolbyvision` | Dolby Vision RPU metadata |
//! | `mixer` | `oximedia-mixer` | Professional digital audio mixer |
//! | `scaling` | `oximedia-scaling` | High-quality video scaling |
//! | `graphics` | `oximedia-graphics` | Broadcast graphics engine |
//! | `videoip` | `oximedia-videoip` | Video-over-IP protocol |
//! | `compat-ffmpeg` | `oximedia-compat-ffmpeg` | FFmpeg CLI compatibility layer |
//! | `plugin` | `oximedia-plugin` | Dynamic/static codec plugin system |
//! | `server` | `oximedia-server` | RESTful media server |
//! | `hdr` | `oximedia-hdr` | HDR video processing (PQ/HLG, tone mapping, HDR10+) |
//! | `spatial` | `oximedia-spatial` | Spatial audio (Ambisonics, binaural, room simulation) |
//! | `cache` | `oximedia-cache` | High-performance media caching (LRU, tiered, warming) |
//! | `stream` | `oximedia-stream` | Adaptive streaming pipeline, segment management, QoE |
//! | `video-proc` | `oximedia-video` | Scene detection, pulldown detection, temporal denoising, perceptual fingerprinting |
//! | `cdn` | `oximedia-cdn` | CDN edge management, cache invalidation, geographic routing, origin failover |
//! | `neural` | `oximedia-neural` | Lightweight neural network inference for media (tensor ops, conv2d, scene classification) |
//! | `vr360` | `oximedia-360` | 360° VR video: equirectangular/cubemap projections, fisheye, stereo 3D |
//! | `analytics` | `oximedia-analytics` | Media engagement analytics: sessions, retention curves, A/B testing, scoring |
//! | `caption-gen` | `oximedia-caption-gen` | Advanced caption generation: speech alignment, WCAG compliance, diarization |
//! | `mjpeg` | `oximedia-codec` (mjpeg) | Motion JPEG intra-frame video codec |
//! | `apv` | `oximedia-codec` (apv) | APV (Advanced Professional Video) intra-frame codec (ISO/IEC 23009-13) |
//! | `full` | all of the above | Everything enabled |
// ── Always-on core re-exports ───────────────────────────────────────────────
/// Core OxiMedia types: errors, codecs, pixel/sample formats, timestamps.
pub use ;
pub use FileSource;
/// I/O primitives: byte readers and media source abstractions.
///
/// `FileSource` is only re-exported off `wasm32-unknown-unknown` — WASM
/// targets have no `std::fs`, so the file-backed source is omitted and
/// callers are expected to use [`MemorySource`] or a custom
/// [`MediaSource`] implementation.
pub use ;
/// Container layer: probing, demuxing, packets, stream descriptors.
pub use ;
/// Computer vision primitives (always available).
pub use oximedia_cv as cv;
// ── Feature-gated domain modules ────────────────────────────────────────────
/// Audio processing: codecs (Opus, Vorbis, FLAC, PCM), frames, resampling.
///
/// Enable with `features = ["audio"]`.
/// Video codec support: AV1, VP9, VP8 encoding/decoding.
///
/// Enable with `features = ["video"]`.
/// Filter graph pipeline: nodes, ports, connections, frame routing.
///
/// Enable with `features = ["graph"]`.
/// Professional audio effects: reverb, delay, compression, EQ, pitch, and more.
///
/// Enable with `features = ["effects"]`.
/// Network streaming: HLS, DASH, SRT, RTMP, WebRTC, SMPTE ST 2110.
///
/// Enable with `features = ["net"]`.
/// Broadcast loudness metering: EBU R128, ATSC A/85, ITU-R BS.1770-4.
///
/// Enable with `features = ["metering"]`.
/// Loudness normalization: two-pass, real-time, ReplayGain, streaming targets.
///
/// Enable with `features = ["normalize"]`.
/// Video quality assessment: PSNR, SSIM, MS-SSIM, VMAF, VIF, NIQE, BRISQUE.
///
/// Enable with `features = ["quality"]`.
/// Extended metadata: ID3v2, Vorbis Comments, APEv2, iTunes, XMP, EXIF, IPTC.
///
/// Enable with `features = ["metadata-ext"]`.
/// SMPTE timecode: LTC and VITC reading/writing at all standard frame rates.
///
/// Enable with `features = ["timecode"]`.
/// Workflow orchestration: DAG-based workflows, scheduling, persistence.
///
/// Enable with `features = ["workflow"]`.
/// Batch processing: job queuing, worker pools, watch-folder automation.
///
/// Enable with `features = ["batch"]`.
/// System monitoring: metrics, alerting, health checks, Prometheus export.
///
/// Enable with `features = ["monitor"]`.
/// LUT processing: 1D/3D LUTs with tetrahedral interpolation, HDR pipeline.
///
/// Enable with `features = ["lut"]`.
/// Color management: ICC profiles, ACES workflow, HDR, gamut mapping.
///
/// Enable with `features = ["colormgmt"]`.
/// Transcoding pipeline: parallel encoding, ABR ladders, multi-pass, audio normalization.
///
/// Enable with `features = ["transcode"]`.
/// Subtitle rendering: SRT, ASS/SSA, WebVTT with font rendering and animation.
///
/// Enable with `features = ["subtitle"]`.
/// Closed captions: SRT, WebVTT, SCC, TTML, EBU-STL, and many more formats.
///
/// Enable with `features = ["captions"]`.
/// Archive verification: checksums, fixity checks, OAIS-compliant preservation.
///
/// Enable with `features = ["archive"]`.
/// Deduplication: exact-hash, perceptual, SSIM, audio fingerprint, metadata matching.
///
/// Enable with `features = ["dedup"]`.
/// Media search: full-text, visual similarity, audio fingerprint, faceted, color, OCR.
///
/// Enable with `features = ["search"]`.
/// Media Asset Management: asset lifecycle, collections, ingest, workflows, RBAC.
///
/// Enable with `features = ["mam"]`.
/// Scene understanding: classification, object/face detection, composition analysis.
///
/// Enable with `features = ["scene"]`.
/// Shot detection: hard cuts, dissolves, fades, shot type and camera movement.
///
/// Enable with `features = ["shots"]`.
/// Broadcast video scopes: waveform, vectorscope, histogram, parade, false color.
///
/// Enable with `features = ["scopes"]`.
/// Visual effects and compositing: transitions, keying, particles, generators, stylization.
///
/// Enable with `features = ["vfx"]`.
/// Advanced image processing: DPX, OpenEXR, TIFF, ICC, DNG, XMP, pyramid, tone curves.
///
/// Enable with `features = ["image-ext"]`.
/// Perceptual watermark embedding and forensic detection (DSSS, echo, phase, QIM).
///
/// Enable with `features = ["watermark"]`.
/// Music Information Retrieval: beat tracking, key detection, fingerprinting, MIR analysis.
///
/// Enable with `features = ["mir"]`.
/// Content recommendation engine with collaborative filtering and personalization.
///
/// Enable with `features = ["recommend"]`.
/// Broadcast playlist management, scheduling, SCTE-35, EPG, and automation.
///
/// Enable with `features = ["playlist"]`.
/// Broadcast playout server with ad insertion, graphics overlays, and failover.
///
/// Enable with `features = ["playout"]`.
/// Digital rights management: licensing, territory restrictions, royalties, clearances.
///
/// Enable with `features = ["rights"]`.
/// Collaborative media review and approval workflow with frame-accurate annotations.
///
/// Enable with `features = ["review"]`.
/// Audio/video restoration: click/crackle removal, noise reduction, telecine, declipping.
///
/// Enable with `features = ["restore"]`.
/// Media file repair and recovery: corruption detection, header repair, index rebuilding.
///
/// Enable with `features = ["repair"]`.
/// Multi-camera sync and angle switching with automatic camera selection.
///
/// Enable with `features = ["multicam"]`.
/// Video stabilization: motion estimation, trajectory smoothing, rolling shutter correction.
///
/// Enable with `features = ["stabilize"]`.
/// Cloud storage and processing abstraction: S3, Azure Blob, GCS, CDN, cost optimization.
///
/// Enable with `features = ["cloud"]`.
/// EDL (Edit Decision List) parsing and generation: CMX 3600, GVG, Sony BVE-9000.
///
/// Enable with `features = ["edl"]`.
/// NDI (Network Device Interface) clean-room protocol implementation for IP video.
///
/// Enable with `features = ["ndi"]`.
/// IMF (Interoperable Master Format) package support per SMPTE ST 2067.
///
/// Enable with `features = ["imf"]`.
/// AAF (Advanced Authoring Format) interchange per SMPTE ST 377-1.
///
/// Enable with `features = ["aaf"]`.
/// PTP/NTP time synchronization for broadcast production (IEEE 1588-2019, RFC 5905).
///
/// Enable with `features = ["timesync"]`.
/// Media forensics: tampering detection, ELA, noise analysis, copy-move, provenance.
///
/// Enable with `features = ["forensics"]`.
/// Hardware acceleration: Vulkan GPU compute, CPU fallback, device management.
///
/// Enable with `features = ["accel"]`.
/// SIMD-optimised kernels: DCT, SAD, interpolation, blending, color conversion.
///
/// Enable with `features = ["simd"]`.
/// Professional live video switcher: M/E rows, keyers, DVE, tally, macros.
///
/// Enable with `features = ["switcher"]`.
/// Multi-track timeline editor: frame-accurate editing, keyframes, EDL/XML/AAF.
///
/// Enable with `features = ["timeline"]`.
/// Codec optimisation suite: RDO, psychovisual, adaptive quantization, motion search.
///
/// Enable with `features = ["optimize"]`.
/// Performance profiling: CPU, GPU, memory, frame timing, flame graphs, bottlenecks.
///
/// Enable with `features = ["profiler"]`.
/// Distributed render farm coordinator: job management, worker pools, cloud bursting.
///
/// Enable with `features = ["renderfarm"]`.
/// Cloud-agnostic object storage: S3, Azure Blob, GCS, local, caching, lifecycle.
///
/// Enable with `features = ["storage"]`.
/// Real-time CRDT-based collaborative editing for multi-user video production.
///
/// Enable with `features = ["collab"]`.
/// Game streaming and screen capture: ultra-low latency, overlays, replay buffer.
///
/// Enable with `features = ["gaming"]`.
/// Virtual production and LED wall tools: camera tracking, in-camera VFX, genlock.
///
/// Enable with `features = ["virtual-prod"]`.
/// Accessibility: audio description, captions, sign language, compliance (WCAG, EBU).
///
/// Enable with `features = ["access"]`.
/// Media conforming: EDL/XML/AAF timeline-to-media matching and reconstruction.
///
/// Enable with `features = ["conform"]`.
/// Media format conversion: batch transcoding, format detection, metadata preservation.
///
/// Enable with `features = ["convert"]`.
/// Broadcast automation: master control, 24/7 playout, device control, failover, EAS.
///
/// Enable with `features = ["automation"]`.
/// Professional clip management: logging, subclips, bins, smart collections, export.
///
/// Enable with `features = ["clips"]`.
/// Proxy and offline editing workflows: generation, linking, conforming, relink.
///
/// Enable with `features = ["proxy"]`.
/// Encoding preset library: 200+ platform, broadcast, streaming, and archive presets.
///
/// Enable with `features = ["presets"]`.
/// Color calibration: ColorChecker profiling, display calibration, ICC, LUT generation.
///
/// Enable with `features = ["calibrate"]`.
/// Spatial and temporal video denoising: bilateral, NLM, Wiener, wavelet, Kalman.
///
/// Enable with `features = ["denoise"]`.
/// Video alignment and registration: temporal sync, spatial homography, feature matching.
///
/// Enable with `features = ["align"]`.
/// Comprehensive media analysis: scene detection, quality assessment, content classification.
///
/// Enable with `features = ["analysis"]`.
/// Professional audio post-production: ADR, Foley, mixing console, stems, delivery.
///
/// Enable with `features = ["audiopost"]`.
/// Broadcast-grade quality control: video, audio, container, and compliance validation.
///
/// Enable with `features = ["qc"]`.
/// Job queue and worker management for scalable media transcoding pipelines.
///
/// Enable with `features = ["jobs"]`.
/// Automated video editing: highlight detection, smart cutting, auto-assembly, rules engine.
///
/// Enable with `features = ["auto"]`.
/// Video timeline editor: multi-track, effects, transitions, keyframes, rendering.
///
/// Enable with `features = ["edit"]`.
/// Signal routing, NMOS IS-04/IS-05/IS-07, crosspoint matrix, virtual patch bay.
///
/// Enable with `features = ["routing"]`.
/// Advanced audio analysis: spectral, voice, music, source separation, forensics, pitch.
///
/// Enable with `features = ["audio-analysis"]`.
/// GPU compute pipeline: WGPU-based acceleration (Vulkan, Metal, DX12, WebGPU).
///
/// Enable with `features = ["gpu"]`.
/// HLS/DASH adaptive streaming packager: manifests, segments, bitrate ladders, encryption.
///
/// Enable with `features = ["packager"]`.
/// Content protection: CENC, Widevine, PlayReady, FairPlay, Clear Key DRM.
///
/// Enable with `features = ["drm"]`.
/// Professional digital preservation: BagIt, OAIS, PREMIS, METS, fixity, migration.
///
/// Enable with `features = ["archive-pro"]`.
/// Distributed encoding: multi-node coordinator, load balancing, segment/tile/GOP splitting.
///
/// Enable with `features = ["distributed"]`.
/// Render farm coordinator: gRPC workers, priority scheduling, SQLite persistence.
///
/// Enable with `features = ["farm"]`.
/// Dolby Vision RPU metadata: parser and writer for Profiles 5, 7, 8, 8.1, 8.4.
///
/// Enable with `features = ["dolbyvision"]`.
/// Professional digital audio mixer: 100+ channels, automation, effects, bus architecture.
///
/// Enable with `features = ["mixer"]`.
/// High-quality video scaling: bilinear, bicubic, Lanczos, super-resolution, content-aware.
///
/// Enable with `features = ["scaling"]`.
/// Broadcast graphics engine: lower thirds, tickers, tally, keyframe animation, templates.
///
/// Enable with `features = ["graphics"]`.
/// Patent-free video-over-IP: VP9/AV1 transport, mDNS discovery, FEC, tally, PTZ.
///
/// Enable with `features = ["videoip"]`.
/// FFmpeg CLI compatibility: parse FFmpeg arguments and translate to OxiMedia operations.
///
/// Enable with `features = ["compat-ffmpeg"]`.
/// Dynamic and static codec plugin system for extending OxiMedia with external codecs.
///
/// Enable with `features = ["plugin"]`.
/// RESTful media server: JWT auth, HLS/DASH streaming, WebSocket progress, media library.
///
/// Enable with `features = ["server"]`.
/// HDR video processing: PQ/HLG transfer functions, tone mapping, HDR10/HDR10+ metadata.
///
/// Enable with `features = ["hdr"]`.
/// Spatial audio processing: Higher-Order Ambisonics, binaural HRTF rendering, room simulation.
///
/// Enable with `features = ["spatial"]`.
/// High-performance caching infrastructure: LRU, tiered cache, predictive warming.
///
/// Enable with `features = ["cache"]`.
/// Adaptive streaming pipeline: quality ladders, ABR switching, segment management, QoE health.
///
/// Enable with `features = ["stream"]`.
/// Video processing algorithms: scene detection, pulldown detection, temporal denoising, and perceptual fingerprinting.
///
/// Enable with `features = ["video-proc"]`.
/// CDN edge management, cache invalidation, geographic routing, and origin failover.
///
/// Enable with `features = ["cdn"]`.
/// Lightweight neural network inference for media: tensor ops, conv2d, scene classification.
///
/// Enable with `features = ["neural"]`.
/// 360° VR video processing: equirectangular/cubemap projections, fisheye, stereo 3D.
///
/// Enable with `features = ["vr360"]`.
/// Media engagement analytics: session tracking, retention curves, A/B testing, scoring.
///
/// Enable with `features = ["analytics"]`.
/// Advanced caption generation: speech alignment, WCAG compliance, speaker diarization.
///
/// Enable with `features = ["caption-gen"]`.
/// Image transformation: resize, crop, rotate, flip, color conversion.
///
/// Enable with `features = ["image-transform"]`.
/// Sovereign ML pipelines: Pure-Rust ONNX inference (scene classification, shot boundary
/// detection, aesthetic scoring, object detection, face embedding).
///
/// Enable with `features = ["ml"]`. Combine with `ml-scene-classifier`, `ml-shot-boundary`,
/// `ml-aesthetic-score`, `ml-object-detector`, `ml-face-embedder`, and `ml-onnx` to select
/// individual pipelines and the ONNX runtime itself.
///
/// ## WebAssembly support
///
/// Every `ml-*` feature above compiles cleanly on `wasm32-unknown-unknown`,
/// including `ml-onnx` (the OxiONNX Pure-Rust runtime is WASM-friendly).
/// The only exception is `cuda`, which transitively depends on
/// `libloading` for NVIDIA driver binding and therefore is **native
/// only**. See [`oximedia_ml`] crate docs for the full feature /
/// target matrix.
/// Motion JPEG (MJPEG) intra-frame video codec.
///
/// Enable with `features = ["mjpeg"]`.
/// APV (Advanced Professional Video) intra-frame codec (ISO/IEC 23009-13).
///
/// Enable with `features = ["apv"]`.
// ── Prelude ──────────────────────────────────────────────────────────────────