-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathfile_formats.yaml
1665 lines (1665 loc) · 27.3 KB
/
file_formats.yaml
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
3d_studio_format:
ext:
- '*.3ds'
mime:
- image/x-3ds
- application/x-3ds
name: 3D Studio format
reason:
- scientific format
source:
- various
aac_advanced_audio_coding_file_format:
ext:
- '*.aac'
mime:
- audio/x-aac
- audio/aac
name: AAC (Advanced Audio Coding) File Format
reason:
- long term format
source:
- ISO/TR 22299
adobe_digital_negative_dng_:
ext:
- '*.dng'
mime:
- image/x-adobe-dng
name: Adobe Digital Negative (DNG)
reason:
- long term format
source:
- ISO/TR 22299
aiff_audio_interchange_file_format_:
ext:
- '*.aiff'
- '*.aff'
- '*.aifc'
- '*.aif'
- '*.ief'
mime:
- audio/x-midi
- sound/aiff
- audio/aiff
- audio/x-rmf
- audio/x-pn-aiff
- audio/x-gsm
- audio/x-aiff
- audio/rmf
- audio/vnd.qcelp
name: AIFF (Audio Interchange File Format)
reason:
- long term format
source:
- ISO/TR 22299
apple_lossless_audio_codec_alac_:
ext:
- '*.m4a'
mime:
- audio/mp4
name: Apple Lossless Audio Codec (ALAC)
reason:
- open format
source:
- various
apple_numbers:
ext:
- '*.numbers'
- '*.numbers.zip'
mime:
- application/vnd.apple.numbers
name: Apple Numbers
reason:
- scientific format
source:
- various
av1_image_file_format_avif_:
ext:
- '*.avifs'
- '*.avif'
mime:
- image/avif-sequence
- image/avif
name: AV1 Image File Format (AVIF)
reason:
- open format
source:
- various
avi_audio_video_interleaved_file_format:
ext:
- '*.avi'
mime:
- application/x-troff-msvideo
- audio/avi
- video/x-msvideo
- video/msvideo
- video/vnd.avi
- video/avi
name: AVI (Audio Video Interleaved) File Format
reason:
- long term format
source:
- ISO/TR 22299
avi_audio_video_interleaved_video_file_format:
ext:
- '*.gvi'
mime:
- video/avi
name: AVI (Audio Video Interleaved) Video File Format
reason:
- long term format
source:
- ISO/TR 22299
bed_browser_extensible_data_:
ext:
- '*.bed'
mime:
- text/x-bed
name: BED (Browser Extensible Data)
reason:
- scientific format
source:
- various
beilstein_crossfire_file:
ext:
- '*.bsd'
mime:
- chemical/x-crossfire
name: Beilstein Crossfire file
reason:
- scientific format
source:
- various
c_source_code_file:
ext:
- '*.c'
mime:
- text/x-c
name: C Source Code File
reason:
- scientific format
source:
- various
cactvs_format:
ext:
- '*.cascii'
- '*.ctx'
mime:
- chemical/x-cactvs
- chemical/x-cactvs-binary
- chemical/x-cactvs-ascii
- chemical/x-cactus
- chemical/x-cactus-ascii
name: CACTVS format
reason:
- scientific format
source:
- various
ccdc_isostar_library:
ext:
- '*.istr'
mime:
- chemical/x-isostar
name: CCDC IsoStar Library
reason:
- scientific format
source:
- various
ccp4_file_format:
ext:
- '*.ccp4'
mime:
- application/CCP4-mtz
- application/CCP4-mtz-phases
- application/CCP4-mtz-freerflag
- application/CCP4-mtz-observed
- application/CCP4-unmerged-experimental
- application/CCP4-mtz-map
name: CCP4 file format
reason:
- scientific format
source:
- various
cd_audio_cd_audio_track_shortcut:
ext:
- '*.cda'
mime:
- audio/audiocd
- application/x-cda
name: CD Audio CD Audio track shortcut
reason:
- long term format
source:
- ISO/TR 22299
cfd_general_notation_system:
ext:
- '*.cgns'
mime:
- application/cgns
name: CFD General Notation System, ADF (Advanced Data Format)
reason:
- scientific format
source:
- various
chem3d_format:
ext:
- '*.c3d'
mime:
- chemical/x-chem3d
name: Chem3D Format
reason:
- scientific format
source:
- various
chemdraw_exchange_file:
ext:
- '*.cdx'
mime:
- chemical/x-cdxml
- chemical/x-cdx
name: ChemDraw eXchange file
reason:
- scientific format
source:
- various
chemical_markup_language:
ext:
- '*.cml'
mime:
- chemical/x-cml
name: Chemical Markup Language
reason:
- scientific format
source:
- various
collada_digital_asset_exchange_format:
ext:
- '*.dae'
mime:
- model/vnd.collada+xml
name: COLLADA digital asset exchange format
reason:
- scientific format
source:
- various
computer_graphics_metafile:
ext:
- '*.cgm'
mime:
- image/cgm
name: Computer Graphics Metafile
reason:
- long term format
source:
- ISO/TR 22299
crystallographic_information_file:
ext:
- '*.mif'
- '*.cif'
mime:
- chemical/x-cif
name: Crystallographic Information File
reason:
- scientific format
source:
- various
crystalmaker_file:
ext:
- '*.cmdf'
mime:
- chemical/x-cmdf
name: Crystalmaker File
reason:
- scientific format
source:
- various
daylight_smiles_string:
ext:
- '*.smi'
mime:
- chemical/x-daylight-smiles
name: Daylight SMILES string
reason:
- scientific format
source:
- various
dbase_table_for_esri_shapefile:
ext:
- '*.dbf'
- '*.dbase'
mime:
- application/dbase
- application/dbf
name: dBASE Table for ESRI Shapefile
reason:
- scientific format
source:
- various
device_independent_bitmap_dib_:
ext:
- '*.dib'
mime:
- image/dib
name: Device-Independent bitmap (DIB)
reason:
- long term format
source:
- ISO/TR 22299
dicom:
ext:
- '*.dic'
- '*.dcm'
mime:
- application/dicom
- image/dicom-rle
name: DICOM
reason:
- scientific format
source:
- various
dolby_heaac:
ext:
- '*.wav'
mime:
- audio/vnd.dolby.heaac.1
name: Dolby HEAAC
reason:
- long term format
source:
- ISO/TR 22299
embl_nucleotide_sequence_format:
ext:
- '*.emb'
mime:
- chemical/x-embl-dl-nucleotide
name: EMBL nucleotide sequence format
reason:
- scientific format
source:
- various
esri_shapefile:
ext:
- '*.prj'
- '*.shx'
- '*.shp'
mime:
- application/prj
- application/zipped-shapefile
- application/x-esri-shape
- application/shx
- application/shp
- application/x-shapefile
name: ESRI Shapefile
reason:
- scientific format
source:
- various
esri_spatial_index:
ext:
- '*.sbn'
- '*.sbx'
mime:
- application/sbx
- application/sbn
name: ESRI Spatial Index
reason:
- scientific format
source:
- various
extensible_3d_x3d_file_format_family:
ext:
- '*.x3db'
- '*.x3dbz'
- '*.x3dz'
- '*.x3dv'
- '*.x3d'
- '*.x3dvz'
mime:
- model/x3d+xml
- model/x3d+binary
- model/x3d+fastinfoset
- model/x3d+vrml
- model/x3d-vrml
name: Extensible 3D (X3D) File Format Family
reason:
- long term format
source:
- ISO/TR 22299
fasta:
ext:
- '*.fasta'
- '*.frn'
- '*.faa'
- '*.fna'
mime:
- chemical/seq-aa-fasta
- chemical/seq-na-fasta
- text/x-fasta
name: FASTA
reason:
- scientific format
source:
- various
fastq:
ext:
- '*.fq'
- '*.fastq'
- '*.fa'
mime:
- chemical/seq-na-fastq
name: FASTQ
reason:
- scientific format
source:
- various
fhir_file_format:
description: FHIR is a standard for health care data exchange, published by HL7
ext: []
mime:
- application/fhir+xml
- application/fhir+json
- application/fhir+turtle
- application/xml+fhir
- application/json+fhir
- application/turtle+fhir
name: FHIR
reason:
- scientific format
source:
- various
flexible_image_transport_system_fits_:
ext:
- '*.fits'
- '*.fts'
- '*.fit'
mime:
- application/fits
- image/fits
name: Flexible Image Transport System (FITS)
reason:
- scientific format
source:
- various
free_lossless_image_format_flif_:
ext:
- '*.flif'
mime:
- image/flif
name: Free Lossless Image Format (FLIF)
reason:
- open format
source:
- various
gamess_us_ab_initio_input_file:
ext:
- '*.inp'
mime:
- chemical/x-gamess-input
name: GAMESS(US) Ab initio Input File
reason:
- scientific format
source:
- various
gaussian_checkpoint_file:
ext:
- '*.fch'
- '*.fchk'
mime:
- chemical/x-gaussian-checkpoint
name: Gaussian Checkpoint file
reason:
- scientific format
source:
- various
gaussian_cube_file:
ext:
- '*.cub'
mime:
- chemical/x-cube
- chemical/x-gaussian-cube
name: Gaussian Cube file
reason:
- scientific format
source:
- various
gaussian_log_file:
ext:
- '*.gal'
mime:
- chemical/x-gaussian-log
name: Gaussian log file
reason:
- scientific format
source:
- various
genbank_molecular_biology_format:
ext:
- '*.gbk'
- '*.gb'
mime:
- chemical/seq-na-genbank
name: GenBank molecular biology format
reason:
- scientific format
source:
- various
general_feature_format:
ext:
- '*.gff'
mime:
- text/x-gff3
name: General feature format
reason:
- scientific format
source:
- various
geographic_tagged_image_file_format_geotiff_:
ext:
- '*.tif'
mime:
- image/geotiff
name: Geographic Tagged Image File Format (GeoTIFF)
reason:
- long term format
source:
- ISO/TR 22299
geojson_a_geographic_data_format_based_on_json:
ext:
- '*.geojson'
mime:
- application/geo+json
name: GeoJSON a geographic data format based on JSON
reason:
- scientific format
source:
- various
gerber_format:
ext:
- '*.gpt'
- '*.gbo'
- '*.gtl'
- '*.gbp'
- '*.gtp'
- '*.gbs'
- '*.gpb'
- '*.gml'
- '*.gbr'
- '*.gto'
- '*.gbl'
- '*.gts'
- '*.gko'
mime:
- application/vnd.gerber
name: Gerber format
reason:
- open format
source:
- various
gnumeric_spreadsheet:
ext:
- '*.gnm'
- '*.gnumeric'
mime:
- application/x-gnumeric
name: Gnumeric spreadsheet
reason:
- scientific format
source:
- various
graphics_interchange_format:
ext:
- '*.gif'
mime:
- image/gif
name: Graphics Interchange Format
reason:
- long term format
- open format
source:
- ISO/TR 22299
- various
grib:
ext:
- '*.grb1'
- '*.grb2'
- '*.grb'
mime:
- application/x-grib
- application/wmo-grib2
name: GRIB
reason:
- scientific format
source:
- various
hdf:
ext:
- '*.hdf'
- '*.hdf5'
- '*.h5'
mime:
- application/x-hdf5
- application/x-hdf
name: HDF
reason:
- scientific format
source:
- various
hyperchen_hin_data_format:
ext:
- '*.hin'
mime:
- chemical/x-hin
name: HyperChen HIN data format
reason:
- scientific format
source:
- various
iso14976_spectroscopic_format:
ext:
- '*.vms'
mime:
- chemical/x-vamas-iso14976
name: ISO14976 Spectroscopic format
reason:
- scientific format
source:
- various
jcamp_dx_a_chemical_spectroscopy_format:
ext:
- '*.jdx'
mime:
- chemical/x-jcamp-dx
name: JCAMP-DX a chemical spectroscopy format
reason:
- scientific format
source:
- various
jpeg_2000_file_format:
ext:
- '*.jpf'
- '*.jpx'
- '*.jpg'
- '*.jp2'
- '*.mj2'
- '*.jpm'
mime:
- image/jpx
- image/jpeg2000
- image/x-jpeg2000-image
- image/jp2
- image/jpm
- image/jpeg2000-image
name: JPEG 2000 File Format
reason:
- long term format
- open format
source:
- ISO/TR 22299
- various
jpg_joint_photographic_experts_group_file_format:
ext:
- '*.jpf'
- '*.jfif'
- '*.jls'
- '*.jif'
- '*.jmh'
- '*.jpg'
- '*.jp2'
- '*.jpeg'
- '*.jpe'
- '*.j'
- '*.jfi'
- '*.spf'
mime:
- image/jpeg
- application/jpg
- image/jpm
- image/jpg
name: JPG (Joint Photographic Experts Group) File Format
reason:
- long term format
source:
- ISO/TR 22299
jt_3d_visualization_format:
ext:
- '*.jt'
mime:
- model/jt
name: JT 3D visualization format
reason:
- long term format
source:
- ISO/TR 22299
jupyter_notebook_file:
ext:
- '*.ipynb'
mime:
- application/x-ipynb+json
name: Jupyter Notebook File
reason:
- scientific format
source:
- various
kinetic_protein_structure_images:
ext:
- '*.kin'
mime:
- chemical/x-kinemage
name: Kinetic (Protein Structure) Images
reason:
- scientific format
source:
- various
lotus_1_2_3_format:
ext:
- '*.wk3'
- '*.wk4'
- '*.wk1'
- '*.wks'
- '*.wk2'
- '*.wk*'
mime:
- application/vnd.lotus-1-2-3
name: Lotus 1-2-3 Format
reason:
- scientific format
source:
- various
macmolecule_file_format:
ext:
- '*.mcm'
mime:
- chemical/x-macmolecule
name: MacMolecule File Format
reason:
- scientific format
source:
- various
macromodel_molecular_mechanics:
ext:
- '*.mmod'
- '*.mmd'
mime:
- chemical/x-macromodel-input
name: MacroModel Molecular Mechanics
reason:
- scientific format
source:
- various
material_exchange_format_mxf_:
ext:
- '*.mxf'
mime:
- application/mxf
name: Material Exchange Format (MXF)
reason:
- long term format
source:
- ISO/TR 22299
mathematica_format:
ext:
- '*.wl'
- '*.m'
- '*.ma'
- '*.nb'
mime:
- application/vnd.wolfram.mathematica
- application/mathematica
- application/vnd.wolfram.mathematica.package
- text/x-mathematica
name: Mathematica Format
reason:
- scientific format
source:
- various
mathml_math_content_format:
ext:
- '*.mml'
mime:
- text/mathml
- application/mathml+xml
name: MathML math content format
reason:
- scientific format
source:
- various
matlab_format:
ext:
- '*.m'
- '*.mat'
mime:
- application/matlab-mat
- text/x-matlab
- application/x-matlab-figure
- application/x-matlab-workspace
- application/x-matlab-data
name: Matlab Format
reason:
- scientific format
source:
- various
mdl_mol_molecular_models_and_drawings_format:
ext:
- '*.mol'
mime:
- chemical/x-mdl-molfile
name: MDL MOL molecular models and drawings format
reason:
- scientific format
source:
- various
mdl_reaction_data_file:
ext:
- '*.rd'
mime:
- chemical/x-mdl-rdfile
name: MDL Reaction-data file
reason:
- scientific format
source:
- various
mdl_reaction_format:
ext:
- '*.rxn'
mime:
- chemical/x-mdl-rxnfile
name: MDL Reaction format
reason:
- scientific format
source:
- various
mdl_structure_data_file:
ext:
- '*.sd'
mime:
- chemical/x-mdl-sdfile
name: MDL Structure-data file
reason:
- scientific format
source:
- various
mdl_transportable_graphics_file:
ext:
- '*.rd'
mime:
- chemical/x-mdl-tgf
name: MDL Transportable Graphics file
reason:
- scientific format
source:
- various
microsoft_excel_file:
ext:
- '*.xlc'
- '*.xld'
- '*.xlt'
- '*.xlsm'
- '*.xls'
- '*.xlsb'
- '*.xlw'
- '*.xll'
- '*.xlm'
- '*.xla'
mime:
- application/vnd.ms-excel.addin.macroenabled.12
- application/vnd.ms-excel.template.macroenabled.12
- application/vnd.ms-excel.sheet.binary.macroenabled.12
- application/vnd.openxmlformats-officedocument.spreadsheetml.template
- application/vnd.ms-excel.sheet.4
- application/msexcel
- application/vnd.ms-excel.workspace.3
- application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
- application/x-tika-old-excel
- application/vnd.ms-excel.sheet.3
- application/vnd.ms-excel.sheet.2
- application/vnd.ms-excel.workspace.4
- application/vnd.ms-excel
- application/vnd.ms-excel.sheet.macroenabled.12
name: Microsoft Excel File
reason:
- scientific format
source:
- various
miniseed_format:
ext:
- '*.mseed'
mime:
- application/vnd.fdsn.mseed
name: miniSEED Format
reason:
- scientific format
source:
- various
mmcif_3d_molecular_model_format:
ext:
- '*.mmcif'
mime:
- chemical/x-mmcif
name: MMCIF 3D molecular model format
reason:
- scientific format
source:
- various
molconn_z_format:
ext:
- '*.b'
mime:
- chemical/x-molconn-Z
name: Molconn-Z Format
reason:
- scientific format
source:
- various
motion_jpeg_2000_file_format:
ext:
- '*.jpf'
- '*.jpgm'
- '*.jpx'
- '*.mjp2'
- '*.mp1'
- '*.jp2'
- '*.mj2'
- '*.mp2'
- '*.jpm'
mime:
- video/jpm
- video/mj2
- video/mpeg
name: Motion JPEG 2000 File Format
reason:
- long term format
- open format
source:
- ISO/TR 22299
- various
mp3_file_format:
ext:
- '*.mp3'
mime:
- audio/x-mpegaudio
- audio/x-mpg
- audio/mp3
- audio/mpeg
- audio/mpg
- audio/mpeg3
- audio/x-mpeg3
- audio/x-mp3
name: MP3 File Format
reason:
- long term format
source:
- ISO/TR 22299
mpeg_2_file_format:
ext:
- '*.m2v'
- '*.mpeg'
- '*.m2a'
- '*.ts'
- '*.mpg'
- '*.m2ts'
mime:
- video/mpeg
- video/mp2p
- video/x-mpeg2a
- video/mpeg2
- video/mp2t
- application/x-pn-mpg
name: MPEG-2 File Format
reason:
- long term format
source:
- ISO/TR 22299
mpeg_4_file_format:
ext:
- '*.m4a'
- '*.mpg'
- '*.m4v'
- '*.mp4'
mime:
- application/mp4
- video/mp4v-es
- application/mpeg4-iod-xmt
- video/mpeg4-generic
- audio/mp4
- application/mpeg4-iod
- video/mp4
- application/mpeg4-generic
name: MPEG-4 File Format
reason:
- long term format
source:
- ISO/TR 22299
mpeg_4_media_file:
ext:
- '*.f4v'
mime:
- application/mp4
- video/mp4
name: MPEG-4 Media File
reason:
- long term format