-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmimeData.json
13903 lines (13903 loc) · 299 KB
/
mimeData.json
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
[
{
"name": "application/vnd.lotus-1-2-3",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".123"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/Lotus_1-2-3"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/application/vnd.lotus-1-2-3"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "text/vnd.in3d.3dml",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".3dml"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "video/3gpp2",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [
"audio/3gpp2"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".3g2"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/3G2"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/video/3gpp2"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "image/avif",
"description": "AVIF (AV1 Image File Format) is an image and animation file format, an extension of <a href=\"/image/heif\">HEIF</a> allowing images encoded with AV1. Most files will only have AV1-encoded images, but a mixture of different encodings is allowed. Early draft versions were named AV1 Still Image File Format.",
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/AVIF"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/image/heif"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/AVIF"
}
],
"links": {
"deprecates": [],
"relatedTo": [
"image/avif-sequence"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".avif"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},{
"name": "image/avif-sequence",
"description": "AVIF (AV1 Image File Format) is an image and animation file format, an extension of <a href=\"/image/heif\">HEIF</a> allowing images encoded with AV1. Most files will only have AV1-encoded images, but a mixture of different encodings is allowed. Early draft versions were named AV1 Still Image File Format.",
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/AVIF"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/image/heif"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/AVIF"
}
],
"links": {
"deprecates": [],
"relatedTo": [
"image/avif"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".avifs"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-krita",
"description": "KRA is the file format for Krita, a raster graphics editor. It is a ZIP archive containing a number of files, including the image data, the layer structure, and the document settings.<br /><br />It is similar in function to PSD files for photoshop.<br /><br />A .krz file is a compressed version of a .kra file and only missing the mergedimage.png contained within it to save storage. The lack of this file can affect interchange with other applications such as Scribus.",
"furtherReading": [
{
"title": "Krita File Format",
"url": "https://docs.krita.org/en/general_concepts/file_formats/file_kra.html"
},
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/Krita"
}
],
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".kra",
".krz"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "image/heic",
"description": "The MIME subtype name may be 'heic' only if the file conforms to the requirements of the 'heic', 'heix', 'heim', or 'heis' brand, and contains at least one of those brands as a compatible brand. The MIME subtype name may be 'heif' only if the file conforms to the requirements of the 'mif1' brand, and contains that brand as a compatible brand.<br /><br />HEIF (High Efficiency Image File Format) is the lossy image and animation format defined by MPEG-H Part 12 (ISO/IEC 23008-12). <br /><br />It is closely related to the HEVC video format, so in that way it is similar to BPG. It uses boxes/atoms format as a container format, so in that way it is similar to JPEG 2000.",
"furtherReading": [
{
"title": "The Moving Picture Experts Group",
"url": "https://mpeg.chiariglione.org/standards/mpeg-h/image-file-format"
},
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/HEIF"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/High_Efficiency_Image_File_Format"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/image/heic"
}
],
"links": {
"deprecates": [],
"relatedTo": [
"image/heif"
],
"parentOf": [],
"alternativeTo": [
"image/heif"
]
},
"fileTypes": [
".heif",
".heic"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "video/3gpp",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [
"audio/3gpp"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".3gp"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/3GPP"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/video/3gpp"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "audio/3gpp2",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [
"video/3gpp2"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".3g2"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/3G2"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/audio/3gpp2"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-7z-compressed",
"description": "7z is a file format for archiving and data compression, developed by Igor Pavlov. It is the native format of the 7-Zip archiving application.",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".7z"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/7z"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/octet-stream",
"description": "This MIME type is used for binary files, it's usually a fallback for unknown/generic MIMEs with no specific designation.",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".a",
".bin",
".bpk",
".deploy",
".dist",
".distz",
".dmg",
".dms",
".dump",
".elc",
".lha",
".lrf",
".lzh",
".o",
".obj",
".pkg",
".so"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-authorware-bin",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aab",
".u32",
".vox",
".x32"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "image/x-icns",
"description": "ICNS (often written in lowercase as icns) is the native icon format of Mac OS and OS X.<br /><br />It goes by many other names, including Apple Icon, Macintosh Icon, Mac OS Icon, Macintosh OS X Icon, Mac OS X Icon Resource, Mac OS icns Resource, and IconFamily Resource.<br /><br />There are usually multiple images in a file. Supported image sizes are 16×12, and 16, 32, 48, 128, 256, 512, and 1024 pixels square.",
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/ICNS"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/Apple_Icon_Image_format"
}
],
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".icns"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "audio/mp4",
"description": "MP4 is a multimedia container format defined by MPEG-4 Part 14 (ISO/IEC 14496-14). It is based on the Apple QuickTime format, but is not identical to it.<br /><br />It is a successor to the older MOV format, and is used for video (with H.264 and H.265 codecs) and audio (with AAC and AC-3 codecs).<br /><br />It is used by iTunes for music and video downloads, and by many other services for video streaming. It is also used for video files on Blu-ray discs.",
"furtherReading": [
{
"title": "RFC Editor - RFC4337",
"url": "https://www.rfc-editor.org/rfc/rfc4337"
},
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/MP4"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/MPEG-4_Part_14"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/audio/mp4"
}
],
"links": {
"deprecates": [
"audio/mpeg4-generic",
"audio/x-m4a",
"audio/m4a"
],
"relatedTo": [
"video/mp4",
"audio/aac",
"audio/aacp",
"audio/3gpp",
"audio/3gpp2",
"audio/mp4a-latm",
"audio/mpeg4-generic"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".mp4",
".m4a",
".m4b",
".m4p",
".m4r",
".m4v",
".mp4v",
".3gp",
".3g2",
".3ga",
".3gpa",
".3gpp",
".3gpp2",
".3gp2"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "audio/aac",
"description": "AAC (Advanced Audio Coding) is a compressed audio format defined in MPEG-2 Part 7 (ISO/IEC 13818-7), and in an updated form in MPEG-4 Part 3 (ISO/IEC 14496-3). It was designed to be the successor to MP3. iTunes distributes (or distributed) files in this format, apparently including various metadata (like the name, and sometimes email of the account which downloaded it, along with the time it was downloaded).<br /><br />An AAC file may contain only the raw AAC format, or it may use a multimedia container format such MP4 or QuickTime. AAC is often used for the audio component of a video file.",
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/AAC"
},
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/audio/aac"
}
],
"links": {
"deprecates": [
"audio/x-aac"
],
"relatedTo": [
"audio/aacp"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aac",
".m4a"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "audio/mp4a-latm",
"description": "Registered by RFC 3016; updated by RFC 6416, published October 2011)",
"furtherReading": [
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/audio/mp4a-latm"
},
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/MPEG-4_Part_3#MPEG-4_Audio_Lossless_Coding_(ALS)"
}
],
"links": {
"deprecates": [],
"relatedTo": [
"audio/aac",
"audio/aacp",
"audio/3gpp",
"audio/3gpp2",
"audio/mp4",
"audio/mpeg4-generic"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [],
"notices": {
"hasNoOfficial": true,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "audio/aacp",
"description": "AAC+ (Advanced Audio Coding Plus) is a compressed audio format defined in MPEG-4 Part 3 (ISO/IEC 14496-3). It is a successor to AAC, and is designed to be more efficient than AAC for low bitrates. It is also known as HE-AAC (High Efficiency AAC).<br /><br />An AAC+ file may contain only the raw AAC+ format, or it may use a multimedia container format such MP4 or QuickTime. AAC+ is often used for the audio component of a video file.<br /><br />Differs from audio/aac and has lower browser compatibility for playback. The Wikipedia link has the most information I could find.",
"furtherReading": [
{
"title": "Wikipedia",
"url": "https://en.wikipedia.org/wiki/High-Efficiency_Advanced_Audio_Coding"
},
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/AAC"
}
],
"links": {
"deprecates": [],
"relatedTo": [
"audio/aac"
],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aacp"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": true,
"popularUsage": null
}
},
{
"name": "application/x-authorware-map",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aam"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-authorware-seg",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aas"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/AAS"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-abiword",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".abw",
".zabw",
".abw.gz"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/ABW"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.americandynamics.acc",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".acc"
],
"furtherReading": [
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/application/vnd.americandynamics.acc"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-ace-compressed",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".ace"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/ACE"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.acucobol",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".acu"
],
"furtherReading": [
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/application/vnd.acucobol"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.acucorp",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".acutc",
".atc"
],
"furtherReading": [
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/application/vnd.acucorp"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "audio/adpcm",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".adp"
],
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/ADPCM"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.audiograph",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aep"
],
"furtherReading": [
{
"title": "Internet Assigned Numbers Authority (IANA)",
"url": "https://www.iana.org/assignments/media-types/application/vnd.audiograph"
}
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-font-type1",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".afm",
".pfa",
".pfb",
".pfm"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.ibm.modcap",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".afp",
".list3820",
".listafp"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/postscript",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".ai",
".eps",
".ps"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.adobe.air-application-installer-package+zip",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".air"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.amiga.ami",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".ami"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.android.package-archive",
"description": "APK is an archive format used for distributing Android apps. It is based on the Jar format (for Java), and like that format, is actually a ZIP archive with a different extension, and with specific files and directories within it.<br /><br />The executable part of the app is usually in either Dalvik Executable (for older Android versions prior to 5.0) or ART format (for newer versions).<br /><br />Metadata about the app is in a META-INF directory within the archive (similarly to Jar files), compiled code is in a lib directory, and resources in a res directory. There are also a few files at the root level including AndroidManifest.xml (which may be regular XML or, often, binary XML).",
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/APK"
}
],
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".apk"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/x-ms-application",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".application"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.lotus-approach",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".apr"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/pgp-signature",
"description": "PGP (Pretty Good Privacy) is an encryption program, and its encryption format which eventually became the OpenPGP standard.<br /><br />Created by Phil Zimmerman in 1991, it got into some legal trouble early on because encryption of this grade was classified as a munition under U.S. law and restricted from export. These laws, while not completely repealed even now, have been considerably liberalized since, and now export of PGP and related software is only restricted when it's being exported to countries such as Iran that are under special sanction. Zimmerman's PGP company was eventually acquired by Network Associates (now McAfee), which eventually rebranded the original command-line-based PGP as \"McAfee E-Business Server\" and sold off all other PGP assets to some PGP developers who formed a new PGP company, which was eventually acquired by Symantec. Meanwhile, the specifications of the file format had been released as the OpenPGP spec and published as an RFC document, making it available for use in other products.<br /><br />GNU Privacy Guard (GnuPG, GPG) is a commonly-used encryption tool using PGP format, running on Linux systems.<br /><br />PGP uses a combination of several encryption techniques applied serially, including symmetric-key and public-key cryptography.",
"furtherReading": [
{
"title": "Let's Solve the File Format Problem!",
"url": "http://fileformats.archiveteam.org/wiki/PGP"
}
],
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".asc",
".sig"
],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "video/x-ms-asf",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".asf",
".asx"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "text/x-asm",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".asm",
".s"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,
"popularUsage": null
}
},
{
"name": "application/vnd.accpac.simply.aso",
"description": "",
"links": {
"deprecates": [],
"relatedTo": [],
"parentOf": [],
"alternativeTo": []
},
"fileTypes": [
".aso"
],
"furtherReading": [],
"notices": {
"hasNoOfficial": false,
"communityContributed": false,