How to Defer Parsing of JavaScript Properly + WordPress Fix [Updated Guide]

Learn how to Defer Parsing of JavaScript to improve pagespeed score. And how you can fix ‘Eliminate render-blocking of JavaScript’ warning in Google PageSpeed Insights by deferring non-critical JavaScript(s). The newer version of Google PageSpeed Insight refers to this issue as ‘Eliminate render-blocking resources’; these render-blocking resources may include JavaScripts and CSS.

In this article, I will cover what is defer parsing of JavaScript, how to defer parsing of JavaScript properly, why you should defer parsing JavaScript, how to find render-blocking JavaScript(s) which are to be deferred, how to defer multiple JavaScripts in one go, how you can defer parsing of JavaScript in WordPress with or without plugin and how does deferred loading of JavaScript help to speed up your website?

Get WP Rocket WordPress Cache Plugin.
how to defer parsing of javascript in wordpress - how to defer parsing javascript
How to Defer Parsing of JavaScript

In a nutshell, we’ll eliminate render-blocking JavaScript(s) not by actually removing (deleting) them from the website code but by defer loading them. So that they stop blocking the loading (rendering) of meaningful content (the first paint) of the website.

These terms (the above terminology) might be overwhelming for you at first, especially if you’re not a tech guy.

But, don’t worry about that!

I am going to explain everything step by step in simple words. So that you can proceed at your pace and implement the methods to fix ‘Eliminate render-blocking resources’ on your website/blog.

Table of Contents [hide]

What is Defer Parsing JavaScript

A web page is made of up several components which include HTML, CSS/Stylesheets, JavaScript, and graphical (images & icons) components etc. These components are stacked one over another in the code structure of the web page.

When a user types your website URL in the web browser’s address bar and hit enter. The browser first establishes the connection with the server on which your website is hosted.

Once the connection is established, the browser starts rendering the components of the webpage to display the web page.

A2 Hosting - 72% OFF on Turbo (Up To 20X Faster) Hosting

The browser renders the components serially from the top towards the bottom of the webpage. That means what comes first rendered first and so on.

When the browser encounters JavaScript on a web page, it downloads the JavaScript, executes it, and then proceeds to render the next component. So during this time browser stop rendering the rest of the web page.

Every time the browser encounters JavaScript, it stops rendering the rest of the webpage until it renders and executes the encountered JavaScript.

That’s how JavaScript blocks the critical rendering path.

To avoid this situation, Google Engineers recommend deferring non-critical JavaScript.

The question still remains the same, What is Defer Parsing of JavaScript?

Defer Parsing of JavaScript can be defined as the process of using defer or async attribute with JavaScript to avoid render blocking of the first paint of a web page. These attributes tell the web browser to parse and execute the JavaScript in parallel (asynchronously) or after (defer) the parsing of HTML of a web page. Thus, the visitors need not wait longer to see the meaningful content of the web page.

Difference between defer or async

Now you know that there are two attributes – defer or async; that can be used to defer javascript loading.

Before we talk about the difference between defer and async, let’s see how does <script> tag works.

Legend

Legend - async vs defer attribute
legend async vs defer attribute

<script>

script tag
script tag

When we use <script> tag to add script in our code, the HTML is keep parsing till the script file is reached, then onwards parsing will be paused until the script file is downloaded and executed.

Suitability: Not recommended in most cases.

<script defer>

script defer attribute
script defer attribute

When defer attribute is appended with script tag, the script file is downloaded alongside the HTML parsing but the downloaded script executes only after the completion of HTML parsing.

Suitability: For non-critical script files.

<script async>

script async attribute
script async attribute

When async attributed is used with script tag, the script file downloads during HTML parsing, then HTML parsing pauses just to execute the downloaded-script file.

Suitability: For critical script files that cannot be inline.  

Defer loading of JS & PageSpeed Insights recommendation

Let’s try to put this in a perspective with Google PageSpeed Insights warning and recommendation.

When you test, a website using Google Pagespeed Insights Tool, you get some warnings and recommendations to fix those warnings/errors.

Google PSI - Render blocking resources - JavaScripts to be deferred
Google PSI – Render blocking resources – JavaScripts to be deferred

The PageSpeed Insights (PSI) text for render-blocking resources says,

Eliminate render-blocking resources.

Resources are blocking the first paint of your page. Consider delivering critical JS/CSS inline and deferring all non-critical JS/styles.

This warning triggers for two different elements i.e. JavaScript (JS) and CSS when any of them block the critical rendering path 1 during the website loading. Here in this article, we are discussing the JavaScript part.

(In the previous version of PageSpeed Insights Tool, the same warning (for the JavaScript) used to be called ‘Eliminate render-blocking of JavaScript’.)

In simple words, this warning triggers when there are some JavaScript(s) loading on your website which blocks the loading of the content that matters most to your visitors.

This means your visitors have to wait longer to see the meaningful content of your website because JavaScript(s) are blocking the rendering of content.

Clearly, Pagespeed Insights or other site speed testing tools (GTMetrix, etc.) show this warning/error, if your site loads some JavaScript(s) that block the loading of meaningful content (the first paint) of your site.

And this needs to be fixed.

Critical vs Non-critical JavaScript: Explained

As Google PageSpeed Insights (PSI) recommendation says you should deliver critical JS inline and defer all non-critical JS.

What does this mean?

Let’s break that down by terminology.

Critical JavaScripts: JavaScripts that are necessary to load during optimized critical rendering.

Non-critical JavaScripts: Those JS that can wait to load until the first meaningful content (the first paint) of the webpage has loaded.

Inline Delivery: Inline delivery refers to loading a resource (in this case JS) within the HTML code instead of calling/importing that separately.

Curious? Why does JavaScript block the critical rendering path in the first place?

We’ll discuss that in the next section with other reasons why you should Defer JavaScript Parsing.

Do you know? how to

Why You Should Defer Parsing of JavaScript

JavaScript Execution: is a Heavier Task

How does JS Affect SiteSpeed?

First of all, JavaScript(s) is one of the major culprits to make your website slow.

Wondering, why is that?

Because when the web browser comes across a script, it executes the script first before continuing to load HTML that includes the content users are looking for.

For a browser, executing JavaScript is a heavier task (depending on the size of the script) and takes more time as compared to rendering the meaningful content (the first paint) of the webpage.

Hence JavaScript affects the critical rendering path and slows down pagespeed of your website.

Why not defer this heavier task of JS execution so that the critical rendering path remains uninterrupted, right?

Pagespeed: is now a Ranking Factor

Site speed has already become a ranking signal.

About a decade ago Google announced 2 in an official blog post on Google Webmaster Central Blog that site speed has become a ranking signal.

In another blog post published on the Official Webmaster Central Blog in 2018, they revealed 3 that Google started using page speed as a ranking factor in mobile search ranking.

Since Google had declared pagespeed a factor in search result rankings for desktop and mobile. Therefore, site speed optimization has become a significant aspect of technical SEO.

For the same reason, Google PageSpeed Insights Tool recommends deferred parsing of JavaScript as one of the solutions 4 to remove render-blocking JavaScript in above-the-fold content.

User Experience: decides Your Site’s Success

How does JavaScript affect user experience (UX)?

We have already discussed that JavaScript(s) slow down the pagespeed by blocking the rendering of first paint (the meaningful content). That led to more loading time and a longer wait for users to see the content; bad user experience, right.

Speed matters a lot, the truth is users do not like slow-loading websites. In fact, studies show that the users leave a slow loading site early and move on.

On the contrary, you want your website audience to engage with your site and eventually turn into a customer, subscriber, or ad-viewer. In order to make that happen, you need to improve your pagespeed by deferring non-critical JavaScript(s).

Reasons to Defer Loading of JavaScript: Summing it up

As I mentioned above, however, the parser (browser) starts downloading and executing the script over parsing the rest of HTML, whenever it encounters the script.

But the fact is, most of the JavaScript(s) come into use when the complete web page is loaded. For example, in some animation, effect, or functionality, etc.

Therefore, it is a good idea to load JavaScript(s) only after the content has loaded.

This way deferred loading of JavaScript does not affect the critical render path and consequently helps to speed up your website. And hence, a better user experience for your readers.

And by making your site load faster, you also improve your search ranking on desktop as well as mobile.

Do you know, good web hosting is a must for better pagespeed?
If you are already using good web hosting?
Awesome, let’s skip to defer parsing of JavaScript.
Not sure? whether your hosting is as good as your website deserves, don’t worry. We recommend Cloudways and Kinsta Hosting for better sitespeed.
Read our Kinsta Review.

Now, since you have an understanding of what is defer parsing of JavaScript and why you should defer loading of JavaScript(s).

It is a good time to figure out which JavaScript(s) (on your website) are the culprits and need to be deferred.

If you already know which JavaScript(s) on your website are blocking the critical rendering path, you may skip the following section and jump to the implementation part. Otherwise, keep on reading…

How to Find Render-blocking JavaScript(s)

JavaScript(s) which block the rendering of meaningful content are called ‘Render Blocking JavaScript(s)’ and need to be deferred.

You can find render-blocking JavaScript(s) by analyzing your website using site speed testing tools.

There are several pagespeed testing tools available to analyze a website for site speed and loading time. I am sharing with you the most reliable and trusted tools for pagespeed testing.

Test your site using these tools and note the results of these tools so that you can compare the results before and after implementing defer parsing of JavaScript(s).

1. PageSpeed Insights by Google

PageSpeed Insights by Google
PageSpeed Insights by Google

Google PageSpeed Insights (PSI) is an exclusive pagespeed testing tool by Google. Test your website using Google PSI Tool to find out render-blocking JavaScript(s). PageSpeed Insights Tool results give information about warnings and their solutions/fixes.

2. GTmetrix

GTmetrix - Speed and Performance Test Tool
GTmetrix – Speed and Performance Test Tool

This one (GTmetrix) is another good free tool to test site speed. You can test your site with GTmetrix to know which JavaScripts need to be deferred.

3. Pingdom Tools

Pingdom Tools for Website Speed Test
Pingdom Tools for Website Speed Test

Solarwinds’ Pingdom Tools are also very popular when it comes to site speed testing tools. You can test your site using Pingdom Tools to check the number of JS requests on your site and how much they contribute to the total number of requests.

Now you know which JavaScript(s) are making your site slow and need to be deferred. So, let’s see how to fix this issue by deferring non-critical JavaScript(JS).

Test Results: Before Defer Parsing of JavaScript

I have tested a website before implementing defer parsing of JavaScript. Consider these a baseline and compare these results after deferred loading of JavaScripts.

Pagespeed Insights Result before Defer Parsing of JS
Pagespeed Insights Result before Defer Parsing of JS
GTmetrix Result before Defer Parsing of JS
GTmetrix Result before Defer Parsing of JS

How to Defer Parsing of JavaScript [Step by step]

You need to use the following code to defer parsing JavaScript. Insert this code in HTML file just before the </body> tag. Read the instructions given below to use this script.

< script type="text/javascript">
function parseJSAtOnload() {
var element = document.createElement("script");
element.src = "script_to_be_deferred.js";
document.body.appendChild(element);
}
if (window.addEventListener)
window.addEventListener("load", parseJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", parseJSAtOnload);
else window.onload = parseJSAtOnload;
</script >

Instructions for Defer Parsing JavaScript using the script

Don’t forget to take a complete backup before making any changes in the code. If something went wrong, you can use that backup to go back.

  1. Copy the code and paste it in HTML file just before the </body> tag (near the bottom of HTML file).
  2. Replace script_to_be_deferred.js with the link of the JavaScript which is to be deferred. You can copy the link of JavaScript(s) (which Google PageSpeed tool suggests to defer) from Google PageSpeed Insights tool results for your website.
  3. Save changes. And you are done.
  4. Finally, test your website again to see the effect.

Code to Defer Multiple JavaScripts in One-go

If you want to defer multiple scripts in one go. You can use the same script with little modification. In the following code replace defer1.js, defer3.js, and defer3.js, etc. with the link of scripts that you want to defer.

 < script type="text/javascript">
function parseJSAtOnload() {
var links = ["defer1.js", "defer2.js", "defer3.js"],
headElement = document.getElementsByTagName("head")[0],
linkElement, i;
for (i = 0; i < links.length; i++) {
linkElement = document.createElement("script");
linkElement.src = links[i];
headElement.appendChild(linkElement);
}
}
if (window.addEventListener)
window.addEventListener("load", parseJSAtOnload, false);
else if (window.attachEvent)
window.attachEvent("onload", parseJSAtOnload);
else window.onload = parseJSAtOnload;
</script >  

How to Defer Parsing of JavaScript in WordPress

You can defer parsing of JavaScript in WordPress by following methods:

  1. Using WordPress Plugins (with a plugin) – suitable for all plugin lovers.
  2. Adding a Code Snippet to function.php file – suitable for those who are used to playing with code and editing files in WordPress. – without plugin method #1
  3. Using the Script mentioned above  – suitable for geeks who don’t want to use a plugin. – without plugin method #2

1. Defer Parsing of JavaScript using WordPress Plugin

There are several WordPress plugins available to defer parsing of JavaScript in WordPress, I am listing the best plugins that stand out in the crowd because of their performance and reliability.

Obviously, the process of installing and activating any of the following plugins remains the same.

If you’re not sure about the process of installing a WordPress plugin, you can refer this beginner’s guide to learn different methods of installing a plugin in WordPress.

#1.1 Async JavaScript Plugin

If you want a standalone plugin to defer parsing of JavaScript, Async JavaScript should be your pick.

This tiny plugin offers all necessary settings to tweak deferred loading of JS in WordPress.

HOW TO USE ASYNC JAVASCRIPT PLUGIN: SETTINGS & USAGE GUIDE

Steps to defer parsing of javascript in WordPress using a plugin:

  1. Navigate to WordPress Dashboard > Plugins > Add New.
  2. Search Async JavaScript Plugin in the plugin repository.
  3. Install and activate Async JavaScript Plugin.
  4. Head-over to WordPress Dashboard > Settings > Async JavaScript.
  5. Go to Settings tab of Async JavaScript Plugin.
  6. Check the box against ‘Enable Async JavaScript’ option and save changes to start deferring Javascript in WordPress.
  7. There are other options as mentioned below; You can tweak the relevant option as per your need.
  • enable asyns js for logged-in user
  • on cart/check out pages
  • quick settings
  • async javascript method
  • jQuery
  • scripts to Async
  • scripts to Defer
  • script Exclusion
  • plugin exclusions
  • theme exclusion
Async Javascript Plugin - Defer JS WordPress
Async Javascript Plugin – Defer JS WordPress

#1.2 Defer Parsing of JavaScript Setting in WP Rocket Plugin

WP Rocket is a power-pack of features when it comes to WordPress speed optimization.

You can easily defer loading of javascript using WP Rocket to speed up your site.

Steps involved to enable defer loading of JS using WP Rocket plugin:

  1. Install and active WP Rocket plugin.
  2. Go to WP Dashboard > Settings > WP Rocket.
  3. Under File Optimization enable Load JavaScript deferred option and save changes.
  4. Now test your site to check results.
Load JavaScript deferred - WP Rocket
Load JavaScript deferred – WP Rocket

DO WE USE WP-ROCKET?

Hell, YES!

You can read, how we got load time under 1s using WP Rocket.

#1.3 Defer Parsing of JavaScript: W3 Total Cache

You can defer JavaScript loading in WordPress using W3 Total Cache plugin.

Steps to defer parsing of JavaScript using W3 Total Cache WordPress plugin:

  • Head-over to WordPress Dashboard > Plugins > Add New.
  • Search W3 Total Cache in the plugin repository.
  • Install and activate W3 Total Cache plugin.
  • Go over WP Dashboard > Performance (W3 Total Cache Settings) > Minify.
  • Scroll down to JS minify settings. You will see settings like shown in the image below.
  • Check/select options as shown in the image below. Click Save all settings and you are done.
  • Test your site using pagespeed test to see the results.
Defer JavaScript - W3 Total Cache
Defer JavaScript – W3 Total Cache

#1.4 Defer Loading of JavaScript in LiteSpeed Cache Plugin

LiteSpeed Cache is an amazing optimization plugin for LiteSpeed server hosting. But the general features of this plugin can be utilized on any server like LiteSpeed, Apache, NGINX, etc.

Steps to defer parsing of javascript in LiteSpeed Cache plugin:

  • Go to WP Dashboard > Plugins > Add New.
  • Search Litespeed Cache in the plugin repository.
  • Install and activate LiteSpeed Cache plugin.
  • Navigate to WP Dashboard > LiteSpeed Cache > Page Optimization > JS Settings.
  • Scroll down to Load JS Deferred And turn it ON and save changes.
  • Now test your website using pagespeed tool to check the result.

#1.5 Defer Parsing of JavaScript using Swift Performance Plugin

Swift Performance plugin has become a well known name in the speed optimization category. Their free version is called ‘Swift Performance Lite’.

The process to delay loading of JS in WordPress using Swift Performance:

  • Head-over to WP Dashboard > Plugins > Add New.
  • Search Swift Performance Lite in the plugin repository.
  • Install and activate Swift Performance Lite
  • Navigate to WP Dashboard > Tools > Swift Performance > Settings > Optimization > Scripts.
  • Enable the option called Merge Scripts. Once you enable it, other related options will appear.
  • Now add the scripts to be deferred under the option called Deferred Scripts and Save changes.
  • Finally, test your website using speed test tool to see the result.
Deferred Scripts setting - Swift Performance Plugin
Deferred Scripts setting – Swift Performance Plugin

#1.6 Defer Parsing of JavaScript in WordPress using Speed Booster Pack 

Speed Booster Pack also offers deferred loading of javascript out of the box. 

Step by step procedure to enable defer loading of js in Speed Booster Pack plugin:

  • Go to WordPress Dashboard > Plugins > Add New.
  • Search Speed Booster Pack in the plugin repository.
  • Install and activate Speed Booster Pack plugin.
  • Navigate to WP Dashboard > Speed Booster > Assets.
  • Scroll down to the option called Optimize JavaScript. Under this option choose Defer for deferred loading of JS.
  • Save changes and you’re done.
  • Now, test your site using pagespeed test tool to check the result.
Defer Javascript - Speed Booster Pack Plugin
Defer Javascript – Speed Booster Pack Plugin

#1.7 Defer Parsing of JavaScript: Autoptimize

Autoptimize another good plugin to optimize WordPress speed. This plugin also offers the option to defer load JS in WordPress.

Step by step process to defer parsing javascript using Autoptimize:

  • Navigate to WordPress Dashboard > Plugins > Add New.
  • Search Autoptimize in WordPress plugin repository.
  • Install and activate Autoptimize plugin.
  • Go to Dashboard > Settings > Autoptimize > JS, CSS & HTML.
  • Under JavaScript Options enable Optimize JavaScript Code and,
  • Then enable Do not aggregate but defer option and save changes.
  • Now Empty Cache and test your site using speed test tool to see the result.
Defer Javascript Loading - Autoptimize
Defer Javascript Loading – Autoptimize

#1.8 WP Fastest Cache to Defer Parsing of JavaScript

You can eliminate render-blocking JavaScript resources using WP Fastest Cache plugin. But this feature is available with the premium version only.

2. Defer JavaScript Parsing in WordPress via functions.php file

Yes, you can defer parsing of JavaScript in WordPress by adding a code snippet to function.php file.

This is one of the methods that you can use to Defer Parsing of JavaScript in WordPress without using a plugin.

As I have mentioned above this method is suitable for people who are comfortable with code editing in WordPress.

You might be thinking, but why?

First of all, functions.php is an important theme file. That means you might end up breaking your site easily if anything went wrong with the editing of functions.php file.

Also, there are different versions of the code snippet on the web to fix defer parsing of JavaScript in WordPress via functions file. Unfortunately, not all the code snippets work fine.

So you should be careful while using a code snippet to defer loading of JavaScript.

How to Edit functions.php File Safely

I always recommend using a child theme in WordPress in order to avoid code editing mess.

Because while editing the code, even if you miss a single comma (,) semicolon (;) or any other symbol/syntax, your website will break completely or partially. And you have to make extra efforts to recover the site.

If you’re not using a child theme, learn how to use a child theme in WordPress and its benefits.

For any reason, if you don’t want to implement a child theme now, you can use this plugin to add code to functions.php file of your theme without editing the original file.

Step by step process to Defer Parsing JavaScript in WordPress via functions.php

Take a complete backup before making any changes to the code.

I assume that you’re using a child theme. If you’re not, first create and activate a child theme to any trouble because of theme file editing.

  1. Go to your WordPress Dashboard > Appearance > Theme Editor
  2. Select/open functions.php file (of child theme) from theme files.
  3. Paste the code snippet given below at the end of functions.php file.
  4. You can specify JS files to exclude from defer in the array (‘jquery.js’).
  5. Finally, click Update File to save changes. That’s all.

The code snippet is to be pasted in functions.php file.

// Defer Parsing of JavaScript in WordPress via functions.php file
// Learn more at https://technumero.com/defer-parsing-of-javascript/ 

function defer_parsing_js($url) {
//Add the files to exclude from defer. Add jquery.js by default
    $exclude_files = array('jquery.js');
//Bypass JS defer for logged in users
    if (!is_user_logged_in()) {
        if (false === strpos($url, '.js')) {
            return $url;
        }

        foreach ($exclude_files as $file) {
            if (strpos($url, $file)) {
                return $url;
            }
        }
    } else {
        return $url;
    }
    return "$url' defer='defer";

}
add_filter('clean_url', 'defer_parsing_js', 11, 1);

The above code snippet is using defer attribute to defer parsing of JavaScripts. You can replace the defer attribute with async attribute to parse JavaScript asynchronously. You can read more about async attribute and other methods to fix render-blocking JavaScript.

3. Defer Parsing of JavaScript without WordPress Plugin – Script Method

The script method explained above can be used in WordPress to defer loading of javascript. In WordPress, the above-mentioned code can be placed in HTML file just before the </body> tag using hook content option.

Most of the popular WordPress themes come with hook content provision. If you are not using the hook content option or it is not available in your theme. Then, either you can use a WordPress plugin to add the script to WordPress footer before </body> tag or you can place the script in the footer file just before the </body> tag manually.

Facing any difficulty adding the script in WordPress footer? Check out our detailed guide, to learn how to add code in WordPress header and footer easily.

Steps to defer load javascript in WordPress without using a plugin:

  1. Copy the code and paste that before the </body> tag (using a plugin or built-in theme hook) .
  2. Now replace script_to_be_deferred.js with the JavaScript to be deferred.
  3. Save changes and you’re done.
  4. Clear the cache, if there is any.
  5. Test your website again to see the result.

Test Results: After Defer Parsing of JavaScript

The following are the test results after defer loading of JavaScript.

PageSpeed Insights Result after fixing Defer Parsing of JavaScript
PageSpeed Insights Result after fixing Defer Parsing of JavaScript
GTmetrix result after implementing Defer Parsing of JavaScript
GTmetrix result after implementing Defer Parsing of JavaScript

Wrapping it up

Other than defer parsing of JavaScript, you can also use async attribute or inline JavaScript to remove render-blocking JavaScript. I have covered async attribute or inline JavaScript in another blog post, read that article here. In that article, I have also mentioned a few useful WordPress plugins to defer parsing JavaScript.

Although WordPress plugins are available to defer parsing of JavaScript. The above-explained script method is considered more appropriate by several experts and webmasters. But the people who use WordPress know that using a WordPress plugin is like bliss.

I hope this guide will help you to defer parsing of JavaScript. Let me know, which technique you use to defer parsing of JavaScript. If you are facing any problem implementing the above methods or have a question. Let me know via the comment section. I will be happy to answer.

Cheers!

Source :
https://technumero.com/defer-parsing-of-javascript/

All known MIME types

There are 2343 known MIME types.

application/x-shockwave-flash2-previewMacromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
audio/module-xmModule Music Formats (Mods) fdd
audio/rmfAIFF (Audio Interchange File Format) fdd
audio/vnd.qcelpAIFF (Audio Interchange File Format) fdd
audio/x-gsmAIFF (Audio Interchange File Format) fdd
audio/x-midiAIFF (Audio Interchange File Format) fdd
audio/x-modModule Music Formats (Mods) fdd
audio/x-pn-aiffAIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
audio/x-rmfAIFF (Audio Interchange File Format) fdd
sound/aiffAIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
video/mp1sMPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/mp2pMPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
3d/vnd.adobe.dn+dcxAdobe Dimension ffw
application-x/geogebra-fileGgb ffw
application/acadDWG ffw
AutoCad Drawing tika
application/acrobatPDF (Portable Document Format) Family fdd
application/activemessageapplication/activemessage tika
application/andrew-insetapplication/andrew-inset tika
application/applefileAppleSingle ffw
application/applefile tika
—  application/applefile; version=”1″AppleSingle 1 pronom
—  application/applefile; version=”2″AppleSingle 2 pronom
application/applixwareapplication/applixware tika
application/atom+xmlAtom ffw
application/atom+xml tika
application/atomcat+xmlapplication/atomcat+xml tika
application/atomicmailapplication/atomicmail tika
application/atomsvc+xmlapplication/atomsvc+xml tika
application/auth-policy+xmlapplication/auth-policy+xml tika
application/autocad_dwgDWG ffw
AutoCad Drawing tika
application/batch-smtpapplication/batch-smtp tika
application/beep+xmlapplication/beep+xml tika
application/binhexBinHex ffw
application/mac-binhex40 tika
application/cals-1840application/cals-1840 tika
application/cborConcise Binary Object Representation container tika
application/ccxml+xmlapplication/ccxml+xml tika
application/cea-2018+xmlapplication/cea-2018+xml tika
application/cellml+xmlapplication/cellml+xml tika
application/cnrp+xmlapplication/cnrp+xml tika
application/commongroundapplication/commonground tika
application/conference-info+xmlapplication/conference-info+xml tika
application/cpl+xmlapplication/cpl+xml tika
application/csta+xmlapplication/csta+xml tika
application/cstadata+xmlapplication/cstadata+xml tika
application/csvCSV ffw
application/cu-seemeapplication/cu-seeme tika
application/cybercashapplication/cybercash tika
application/dartDart githublinguist
application/davmount+xmlapplication/davmount+xml tika
application/dbaseMapInfo Data File (DAT) fdd
dBASE Table File Format (DBF) fdd
dBASE Table for ESRI Shapefile (DBF) fdd
—  application/dbase; version=”iv”dBASE Database IV pronom
application/dbfMapInfo Data File (DAT) fdd
dBASE Table File Format (DBF) fdd
dBASE Table for ESRI Shapefile (DBF) fdd
application/dca-rftapplication/dca-rft tika
application/dec-dxapplication/dec-dx tika
application/dec-dx.DEC Data Exchange File pronom
application/dialog-info+xmlapplication/dialog-info+xml tika
application/dicomDICOM ffw
DICOM medical imaging data tika
Digital Imaging and Communications in Medicine File Format pronom
application/dnsapplication/dns tika
application/dvcsapplication/dvcs tika
application/dwfDWF ffw
—  application/dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  application/x-dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  drawing/x-dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  image/vnd.dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  image/x-dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
—  model/vnd.dwf; version=”6.0″AutoCAD Design Web Format 6.0 pronom
application/dwgDWG ffw
AutoCad Drawing tika
application/dxfDXF ffw
application/ecmascriptActionScript ffw
ECMAScript ffw
application/ecmascript tika
ECMAScript Language (ECMA-262), including JavaScript fdd
application/edi-consentapplication/edi-consent tika
application/edi-x12application/edi-x12 tika
application/edifactapplication/edifact tika
application/emma+xmlapplication/emma+xml tika
application/epp+xmlapplication/epp+xml tika
application/epub+zipEPUB ffw
RePub ffw
Digital Replica Plus ffw
Electronic Publication tika
ePub format pronom
EPUB, Electronic Publication, Version 2 fdd
EPUB, Electronic Publication, Version 3.0.1 (2014). ISO/IEC 23736:2020 fdd
EPUB, Electronic Publication, Version 3.0 (2011). ISO/IEC TS 30135:2014 fdd
EPUB (Electronic Publication) File Format Family fdd
EPUB, Electronic Publication, Version 3.2 fdd
—  application/x-ibooks+zipApple iBooks Author publication format tika
Apple iBook format pronom
application/eshopapplication/eshop tika
application/exampleapplication/example tika
application/f4mF4M ffw
application/fastinfosetapplication/fastinfoset tika
application/fastsoapapplication/fastsoap tika
application/fitsFlexible Image Transport System ffw
Flexible Image Transport System tika
Flexible Image Transport System pronom
Flexible Image Transport System (FITS), Version 3.0 fdd
—  image/fitsFlexible Image Transport System ffw
image/fits tika
Flexible Image Transport System pronom
Flexible Image Transport System (FITS), Version 3.0 fdd
application/font-tdpfrPFR ffw
application/font-tdpfr tika
application/font-woffWOFF ffw
Web Open Font Format pronom
application/freemindMm ffw
application/futuresplashSWF ffw
Macromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
application/gdiffGDIFF ffw
application/geopackage+sqlite3GeoPackage Encoding Standard (OGC) Format Family fdd
application/gml+xmlGeography Markup Language pronom
application/gzipGzip Compressed Archive tika
application/gzip-compressedGzip Compressed Archive tika
application/gzippedGzip Compressed Archive tika
application/h224application/h224 tika
application/httpapplication/http tika
application/hyperstudioapplication/hyperstudio tika
application/ibe-key-request+xmlapplication/ibe-key-request+xml tika
application/ibe-pkg-reply+xmlapplication/ibe-pkg-reply+xml tika
application/ibe-pp-dataapplication/ibe-pp-data tika
application/igesIGES ffw
application/iges tika
application/im-iscomposing+xmlapplication/im-iscomposing+xml tika
application/indexapplication/index tika
application/index.cmdapplication/index.cmd tika
application/index.objapplication/index.obj tika
application/index.responseapplication/index.response tika
application/index.vndapplication/index.vnd tika
application/internet-shortcutInternet Shortcut ffw
application/iotpapplication/iotp tika
application/ippapplication/ipp tika
application/isupapplication/isup tika
application/java-serialized-objectapplication/java-serialized-object tika
application/java-vmJava Class File tika
application/jpgJFIF, JPEG File Interchange Format, Version 1.02 fdd
application/json-patch+jsonJSON Patch ffw
application/kpml-request+xmlapplication/kpml-request+xml tika
application/kpml-response+xmlapplication/kpml-response+xml tika
application/ld+jsonJSON-LD ffw
Web Annotation Protocol ffw
application/lost+xmlapplication/lost+xml tika
application/lotus123; version=”3.0″Lotus 1-2-3 Worksheet 3.0 pronom
application/lotus123; version=”4-5″Lotus 1-2-3 Worksheet 4-5 pronom
application/lwp; version=”96″Lotus WordPro Document 96 pronom
application/lwp; version=”97/millennium”Lotus WordPro Document 97/Millennium pronom
application/mac-binhexBinHex ffw
application/mac-binhex40 tika
application/mac-binhex40BinHex ffw
application/mac-binhex40 tika
application/mac-compactproapplication/mac-compactpro tika
application/macbinaryMacBinary ffw
application/macwriteiiapplication/macwriteii tika
application/marcMARC ffw
application/marc tika
application/mathematicaapplication/mathematica tika
Mathematica Notebook pronom
application/mathml+xmlapplication/mathml+xml tika
application/matlab-matapplication/x-matlab-data tika
MAT-File Level 5 File Format fdd
application/mbms-associated-procedure-description+xmlapplication/mbms-associated-procedure-description+xml tika
application/mbms-deregister+xmlapplication/mbms-deregister+xml tika
application/mbms-envelope+xmlapplication/mbms-envelope+xml tika
application/mbms-msk+xmlapplication/mbms-msk+xml tika
application/mbms-msk-response+xmlapplication/mbms-msk-response+xml tika
application/mbms-protection-description+xmlapplication/mbms-protection-description+xml tika
application/mbms-reception-report+xmlapplication/mbms-reception-report+xml tika
application/mbms-register+xmlapplication/mbms-register+xml tika
application/mbms-register-response+xmlapplication/mbms-register-response+xml tika
application/mbms-user-service-description+xmlapplication/mbms-user-service-description+xml tika
application/media_control+xmlapplication/media_control+xml tika
application/mediaservercontrol+xmlapplication/mediaservercontrol+xml tika
application/mikeyapplication/mikey tika
application/moss-keysapplication/moss-keys tika
application/moss-signatureapplication/moss-signature tika
application/mosskey-dataapplication/mosskey-data tika
application/mosskey-requestapplication/mosskey-request tika
application/mp4application/mp4 tika
MPEG-4 Media File pronom
MPEG-4 File Format, Version 2 fdd
application/mpeg4-genericapplication/mpeg4-generic tika
application/mpeg4-iodapplication/mpeg4-iod tika
MPEG-4 File Format, Version 2 fdd
application/mpeg4-iod-xmtapplication/mpeg4-iod-xmt tika
MPEG-4, eXtensible MPEG-4 Textual Format (XMT) fdd
MPEG-4 File Format, Version 2 fdd
application/ms-tnefapplication/vnd.ms-tnef tika
application/msonenoteMicrosoft OneNote pronom
application/msword2Microsoft Word 2 Document tika
application/msword5Microsoft Word 5 Document tika
application/mxfMXF ffw
application/mxf tika
Material Exchange Format (MXF) fdd
—  application/mxf; version=”operational pattern 1a”Material Exchange Format Operational Pattern 1a pronom
—  application/mxf; version=”operational pattern 1b”Material Exchange Format Operational Pattern 1b pronom
—  application/mxf; version=”operational pattern 1c”Material Exchange Format Operational Pattern 1c pronom
—  application/mxf; version=”operational pattern 2a”Material Exchange Format Operational Pattern 2a pronom
—  application/mxf; version=”operational pattern 2b”Material Exchange Format Operational Pattern 2b pronom
—  application/mxf; version=”operational pattern 2c”Material Exchange Format Operational Pattern 2c pronom
—  application/mxf; version=”operational pattern 3a”Material Exchange Format Operational Pattern 3a pronom
—  application/mxf; version=”operational pattern 3b”Material Exchange Format Operational Pattern 3b pronom
—  application/mxf; version=”operational pattern 3c”Material Exchange Format Operational Pattern 3c pronom
—  application/mxf; version=”operational pattern op-atom”Material Exchange Format Operational Pattern OP-ATOM pronom
application/nasdataapplication/nasdata tika
application/netcdfNetCDF ffw
netCDF-3 Classic pronom
netCDF-3 64-bit pronom
application/news-checkgroupsapplication/news-checkgroups tika
application/news-groupinfoapplication/news-groupinfo tika
application/news-transmissionapplication/news-transmission tika
application/nssapplication/nss tika
application/ocsp-requestapplication/ocsp-request tika
application/ocsp-responseapplication/ocsp-response tika
application/octet-streamTemplate:File Format/Preload ffw
application/octet-stream tika
Windows Portable Executable pronom
AutoCAD Database File Locking Information pronom
form*Z Project File pronom
Revit Family File pronom
Revit Family Template pronom
Revit Template pronom
Revit External Group pronom
Revit Project pronom
Revit Workspace pronom
SketchUp Document pronom
TrueType Font pronom
cc:Mail Archive Email Format fdd
—  application/octet-stream; version=”32 bit”Windows Portable Executable 32 bit pronom
—  application/octet-stream; version=”4″CATIA Model 4 pronom
CATIA Project 4 pronom
—  application/octet-stream; version=”5″CATIA 5 pronom
CATIA Model (Part Description) 5 pronom
CATIA Product Description 5 pronom
—  application/octet-stream; version=”64 bit”Windows Portable Executable 64 bit pronom
—  application/octet-stream; version=”generic”Adobe InDesign Document Generic pronom
application/odaapplication/oda tika
application/oebps-package+xmlapplication/oebps-package+xml tika
application/oggOgg ffw
Vorbis ffw
Ogg Skeleton ffw
application/ogg tika
Ogg Multimedia Container pronom
Ogg File Format fdd
Ogg Vorbis Audio Format fdd
—  application/kateKate ffw
application/kate tika
—  audio/oggOgg ffw
Speex ffw
Vorbis ffw
Ogg Skeleton ffw
Ogg Vorbis Audio tika
Ogg Vorbis Codec Compressed Multimedia File pronom
Ogg Opus Codec Compressed Multimedia File pronom
Ogg FLAC Compressed Multimedia File pronom
Ogg Speex Codec Multimedia File pronom
— —  application/x-oggapplication/ogg tika
Ogg Vorbis Codec Compressed WAV File tika
Ogg File Format fdd
Ogg Vorbis Audio Format fdd
— —  application/x-speexOgg Speex Codec Compressed WAV File tika
— —  audio/opusOgg Opus Codec Compressed WAV File tika
Ogg Opus Codec Compressed Multimedia File pronom
— —  audio/speexOgg Speex Codec Compressed WAV File tika
Ogg Speex Codec Multimedia File pronom
Speex Audio Codec, Version 1.2 fdd
Ogg Speex Audio Format fdd
— —  audio/vorbisOgg Vorbis Codec Compressed WAV File tika
— —  audio/x-ogg-flacOgg Packaged Free Lossless Audio Codec tika
— —  audio/x-ogg-pcmOgg Packaged Unompressed WAV File tika
— —  audio/x-oggflacOgg Packaged Free Lossless Audio Codec tika
— —  audio/x-oggpcmOgg Packaged Unompressed WAV File tika
—  video/oggOgg ffw
Ogg Skeleton ffw
Ogg Vorbis Video tika
Ogg Theora Video pronom
— —  video/daalaOgg Daala Video tika
— —  video/theoraOgg Theora Video tika
— —  video/x-daalaOgg Daala Video tika
— —  video/x-diracOgg Packaged Dirac Video tika
— —  video/x-ogg-rgbOgg Packaged Raw RGB Video tika
— —  video/x-ogg-uvsOgg Packaged Raw UVS Video tika
— —  video/x-ogg-yuvOgg Packaged Raw YUV Video tika
— —  video/x-oggrgbOgg Packaged Raw RGB Video tika
— —  video/x-ogguvsOgg Packaged Raw UVS Video tika
— —  video/x-oggyuvOgg Packaged Raw YUV Video tika
— —  video/x-ogmOgg Packaged OGM Video tika
— —  video/x-theoraOgg Theora Video tika
application/onenoteapplication/onenote tika
application/packagePackage (Web) ffw
application/parityfecapplication/parityfec tika
application/patch-ops-error+xmlapplication/patch-ops-error+xml tika
application/pdfPDF ffw
Portable Document Format tika
Acrobat PDF/X – Portable Document Format – Exchange 1:1999 pronom
Acrobat PDF/X – Portable Document Format – Exchange 1:2001 pronom
Acrobat PDF/X – Portable Document Format – Exchange 1a:2003 pronom
Acrobat PDF/X – Portable Document Format – Exchange 2:2003 pronom
Acrobat PDF/X – Portable Document Format – Exchange 3:2003 pronom
Acrobat PDF/X – Portable Document Format – Exchange 1a:2001 pronom
Acrobat PDF/X – Portable Document Format – Exchange 3:2002 pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-4 pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-4p pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-5g pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-5pg pronom
Acrobat PDF/X – Portable Document Format – Exchange PDF/X-5n pronom
Acrobat PDF/E – Portable Document Format for Engineering PDF/E-1 pronom
PDF, Version 1.5 fdd
PDF_1_3, PDF Versions 1.0-1.3 fdd
PDF, Version 1.7 (ISO 32000-1:2008) fdd
PDF, Version 1.6 fdd
PDF 2.0, ISO 32000-2 (2017, 2020) fdd
PDF (Portable Document Format) Family fdd
PDF/R-1, (Raster image transport and storage). Encrypted, based on PDF 2.0 (ISO 32000-2) fdd
PDF/A-1, PDF for Long-term Preservation, Use of PDF 1.4 fdd
PDF/R-1 (Raster image transport and storage.) Based on PDF 1.4-1.7 (ISO 32000-1) fdd
PDF_1_4, PDF Version 1.4 fdd
—  application/pdf; version=”1.0″Acrobat PDF 1.0 – Portable Document Format 1.0 pronom
—  application/pdf; version=”1.1″Acrobat PDF 1.1 – Portable Document Format 1.1 pronom
—  application/pdf; version=”1.2″Acrobat PDF 1.2 – Portable Document Format 1.2 pronom
—  application/pdf; version=”1.3″Acrobat PDF 1.3 – Portable Document Format 1.3 pronom
—  application/pdf; version=”1.4″Acrobat PDF 1.4 – Portable Document Format 1.4 pronom
—  application/pdf; version=”1.5″Acrobat PDF 1.5 – Portable Document Format 1.5 pronom
—  application/pdf; version=”1.6″Acrobat PDF 1.6 – Portable Document Format 1.6 pronom
—  application/pdf; version=”1.7″Acrobat PDF 1.7 – Portable Document Format 1.7 pronom
—  application/pdf; version=”1a”Acrobat PDF/A – Portable Document Format 1a pronom
—  application/pdf; version=”1b”Acrobat PDF/A – Portable Document Format 1b pronom
—  application/pdf; version=”2a”Acrobat PDF/A – Portable Document Format 2a pronom
—  application/pdf; version=”2b”Acrobat PDF/A – Portable Document Format 2b pronom
—  application/pdf; version=”2u”Acrobat PDF/A – Portable Document Format 2u pronom
—  application/pdf; version=”3a”Acrobat PDF/A – Portable Document Format 3a pronom
—  application/pdf; version=”3b”Acrobat PDF/A – Portable Document Format 3b pronom
—  application/pdf; version=”3u”Acrobat PDF/A – Portable Document Format 3u pronom
application/pgpapplication/pgp-encrypted tika
Public Key githublinguist
application/pgp-encryptedapplication/pgp-encrypted tika
application/pgp-keysapplication/pgp-keys tika
application/pgp-signatureapplication/pgp-signature tika
application/photoshopPhotoshop Image tika
application/pics-rulesapplication/pics-rules tika
application/pidf+xmlapplication/pidf+xml tika
application/pidf-diff+xmlapplication/pidf-diff+xml tika
application/pkcs10PKCS10 ffw
application/pkcs10 tika
application/pkcs7-mimeapplication/pkcs7-mime tika
application/pkcs7-signatureapplication/pkcs7-signature tika
application/pkix-certapplication/pkix-cert tika
application/pkix-crlapplication/pkix-crl tika
application/pkix-pkipathapplication/pkix-pkipath tika
application/pkixcmpapplication/pkixcmp tika
application/playerproModule Music Formats (Mods) fdd
application/pls+xmlapplication/pls+xml tika
application/poc-settings+xmlapplication/poc-settings+xml tika
application/postscriptPostScript ffw
PostScript tika
Encapsulated PostScript (EPS) File Format, Version 3.x fdd
PostScript Format Family fdd
—  application/illustratorAdobe Illustrator Artwork tika
—  application/postscript; version=”1.0 / 1.1″Adobe Illustrator 1.0 / 1.1 pronom
—  application/postscript; version=”1.0″Postscript 1.0 pronom
—  application/postscript; version=”1.2″Encapsulated PostScript File Format 1.2 pronom
—  application/postscript; version=”10.0″Adobe Illustrator 10.0 pronom
—  application/postscript; version=”11.0″Adobe Illustrator 11.0 pronom
—  application/postscript; version=”12.0″Adobe Illustrator 12.0 pronom
—  application/postscript; version=”13.0″Adobe Illustrator 13.0 pronom
—  application/postscript; version=”14.0″Adobe Illustrator 14.0 pronom
—  application/postscript; version=”15.0″Adobe Illustrator 15.0 pronom
—  application/postscript; version=”16.0″Adobe Illustrator 16.0 pronom
—  application/postscript; version=”2.0″Encapsulated PostScript File Format 2.0 pronom
PostScript 2.0 pronom
—  application/postscript; version=”2.1″PostScript 2.1 pronom
—  application/postscript; version=”3″Encapsulated PostScript File Format 3 pronom
—  application/postscript; version=”3.0 / 3.2″Adobe Illustrator 3.0 / 3.2 pronom
—  application/postscript; version=”3.0″PostScript 3.0 pronom
—  application/postscript; version=”3.1″PostScript 3.1 pronom
—  application/postscript; version=”4.0″Adobe Illustrator 4.0 pronom
—  application/postscript; version=”5.0 / 5.5″Adobe Illustrator 5.0 / 5.5 pronom
—  application/postscript; version=”6.0″Adobe Illustrator 6.0 pronom
—  application/postscript; version=”7.0″Adobe Illustrator 7.0 pronom
—  application/postscript; version=”8.0″Adobe Illustrator 8.0 pronom
—  application/postscript; version=”88″Adobe Illustrator 88 pronom
—  application/postscript; version=”9.0″Adobe Illustrator 9.0 pronom
—  application/postscript; version=”japan”Adobe Illustrator Japan pronom
application/prs.alvestrand.titrax-sheetapplication/prs.alvestrand.titrax-sheet tika
application/prs.cwwapplication/prs.cww tika
application/prs.nprendapplication/prs.nprend tika
application/prs.pluckerapplication/prs.plucker tika
application/qifQuicken Interchange Format pronom
application/qsigapplication/qsig tika
application/reginfo+xmlapplication/reginfo+xml tika
application/remote-printingapplication/remote-printing tika
application/resource-lists+xmlapplication/resource-lists+xml tika
application/resource-lists-diff+xmlapplication/resource-lists-diff+xml tika
application/riscosapplication/riscos tika
application/rlmi+xmlapplication/rlmi+xml tika
application/rls-services+xmlapplication/rls-services+xml tika
application/rsd+xmlapplication/rsd+xml tika
application/rss+xmlRSS ffw
application/rss+xml tika
application/rtxapplication/rtx tika
application/samlassertion+xmlapplication/samlassertion+xml tika
application/samlmetadata+xmlapplication/samlmetadata+xml tika
application/sbml+xmlapplication/sbml+xml tika
application/scvp-cv-requestapplication/scvp-cv-request tika
application/scvp-cv-responseapplication/scvp-cv-response tika
application/scvp-vp-requestapplication/scvp-vp-request tika
application/scvp-vp-responseapplication/scvp-vp-response tika
application/sdpapplication/sdp tika
application/serealSereal binary serialization format tika
—  application/sereal;version=1application/sereal;version=1 tika
—  application/sereal;version=2application/sereal;version=2 tika
—  application/sereal;version=3application/sereal;version=3 tika
application/set-paymentapplication/set-payment tika
application/set-payment-initiationapplication/set-payment-initiation tika
application/set-registrationapplication/set-registration tika
application/set-registration-initiationapplication/set-registration-initiation tika
application/sgmlSGML ffw
application/sgml tika
Standard Generalized Markup Language (SGML). ISO 8879:1986 fdd
application/sgml-open-catalogapplication/sgml-open-catalog tika
application/shf+xmlapplication/shf+xml tika
application/sieveapplication/sieve tika
Sieve githublinguist
application/simple-filter+xmlapplication/simple-filter+xml tika
application/simple-message-summaryapplication/simple-message-summary tika
application/simplesymbolcontainerapplication/simplesymbolcontainer tika
application/slaSTL (STereoLithography) File Format, Binary fdd
STL (STereoLithography) File Format Family fdd
STL (STereoLithography) File Format, ASCII fdd
application/slateapplication/slate tika
application/sldAutoCAD Slide pronom
application/smilSMIL Multimedia tika
application/smil+xmlSMIL Multimedia tika
application/soap+fastinfosetapplication/soap+fastinfoset tika
application/soap+xmlapplication/soap+xml tika
application/soundappModule Music Formats (Mods) fdd
Module Music Formats (Mods) fdd
application/sparql-queryapplication/sparql-query tika
SPARQL githublinguist
application/sparql-results+xmlapplication/sparql-results+xml tika
application/spirits-event+xmlapplication/spirits-event+xml tika
application/srgsapplication/srgs tika
application/srgs+xmlapplication/srgs+xml tika
application/ssml+xmlSpeech Synthesis Markup Language ffw
application/ssml+xml tika
application/tifTIFF, Revision 6.0 fdd
application/tiffTIFF, Revision 6.0 fdd
application/timestamp-queryapplication/timestamp-query tika
application/timestamp-replyapplication/timestamp-reply tika
application/tve-triggerapplication/tve-trigger tika
application/typescriptTypeScript githublinguist
application/ulpfecapplication/ulpfec tika
application/vemmiapplication/vemmi tika
application/vividence.scriptfileapplication/vividence.scriptfile tika
application/vnd.3gpp.bsf+xmlapplication/vnd.3gpp.bsf+xml tika
application/vnd.3gpp.pic-bw-largeapplication/vnd.3gpp.pic-bw-large tika
application/vnd.3gpp.pic-bw-smallapplication/vnd.3gpp.pic-bw-small tika
application/vnd.3gpp.pic-bw-varapplication/vnd.3gpp.pic-bw-var tika
application/vnd.3gpp.smsapplication/vnd.3gpp.sms tika
application/vnd.3gpp2.bcmcsinfo+xmlapplication/vnd.3gpp2.bcmcsinfo+xml tika
application/vnd.3gpp2.smsapplication/vnd.3gpp2.sms tika
application/vnd.3gpp2.tcapapplication/vnd.3gpp2.tcap tika
application/vnd.3m.post-it-notesapplication/vnd.3m.post-it-notes tika
application/vnd.accpac.simply.asoapplication/vnd.accpac.simply.aso tika
application/vnd.accpac.simply.impapplication/vnd.accpac.simply.imp tika
application/vnd.acucobolapplication/vnd.acucobol tika
application/vnd.acucorpapplication/vnd.acucorp tika
application/vnd.adobe.adept+xmlAdobe Content Server Message File pronom
application/vnd.adobe.aftereffects.projectapplication/vnd.adobe.aftereffects.project tika
application/vnd.adobe.aftereffects.templateapplication/vnd.adobe.aftereffects.template tika
application/vnd.adobe.air-application-installer-package+zipapplication/vnd.adobe.air-application-installer-package+zip tika
—  application/vnd.adobe.air-application-installer-package+zip; version=”1.0″Adobe Air 1.0 pronom
—  application/vnd.adobe.air-application-installer-package+zip; version=”1.5″Adobe Air 1.5 pronom
—  application/vnd.adobe.air-application-installer-package+zip; version=”2.0″Adobe Air 2.0 pronom
application/vnd.adobe.flash-movieSWF ffw
application/vnd.adobe.folio+zipFolio ffw
application/vnd.adobe.indesign-idml-packageIDML ffw
application/vnd.adobe.pdfxmlPDFXML ffw
application/vnd.adobe.x-marsPDFXML ffw
application/vnd.adobe.xdp+xmlXDP ffw
application/vnd.adobe.xdp+xml tika
application/vnd.adobe.xfdfXFDF ffw
application/vnd.adobe.xfdf tika
application/vnd.aether.impapplication/vnd.aether.imp tika
application/vnd.airzip.filesecure.azfapplication/vnd.airzip.filesecure.azf tika
application/vnd.airzip.filesecure.azsapplication/vnd.airzip.filesecure.azs tika
application/vnd.amazon.ebookapplication/vnd.amazon.ebook tika
Mobipocket File Format fdd
application/vnd.americandynamics.accapplication/vnd.americandynamics.acc tika
application/vnd.amiga.amiapplication/vnd.amiga.ami tika
application/vnd.anser-web-certificate-issue-initiationapplication/vnd.anser-web-certificate-issue-initiation tika
application/vnd.anser-web-funds-transfer-initiationapplication/vnd.anser-web-funds-transfer-initiation tika
application/vnd.antix.game-componentapplication/vnd.antix.game-component tika
application/vnd.api+jsonJSON API ffw
application/vnd.apple.installer+xmlapplication/vnd.apple.installer+xml tika
application/vnd.apple.pkpassPKPass ffw
application/vnd.arastra.swiapplication/vnd.arastra.swi tika
application/vnd.audiographapplication/vnd.audiograph tika
application/vnd.autopackageapplication/vnd.autopackage tika
application/vnd.avistar+xmlapplication/vnd.avistar+xml tika
application/vnd.blueice.multipassapplication/vnd.blueice.multipass tika
application/vnd.bluetooth.ep.oobapplication/vnd.bluetooth.ep.oob tika
application/vnd.bmiapplication/vnd.bmi tika
application/vnd.businessobjectsapplication/vnd.businessobjects tika
application/vnd.cab-jscriptapplication/vnd.cab-jscript tika
application/vnd.canon-cpdlapplication/vnd.canon-cpdl tika
application/vnd.canon-lipsapplication/vnd.canon-lips tika
application/vnd.cendio.thinlinc.clientconfapplication/vnd.cendio.thinlinc.clientconf tika
application/vnd.chemdraw+xmlapplication/vnd.chemdraw+xml tika
application/vnd.chess-pgnPGN ffw
application/vnd.chipnuts.karaoke-mmdapplication/vnd.chipnuts.karaoke-mmd tika
application/vnd.cinderellaapplication/vnd.cinderella tika
application/vnd.cirpack.isdn-extapplication/vnd.cirpack.isdn-ext tika
application/vnd.claymoreapplication/vnd.claymore tika
application/vnd.clonk.c4groupapplication/vnd.clonk.c4group tika
application/vnd.coffeescriptCoffeeScript ffw
application/vnd.comicbook+zipComic Book Archive ffw
application/vnd.comicbook-rarComic Book Archive ffw
application/vnd.commerce-battelleapplication/vnd.commerce-battelle tika
application/vnd.commonspaceapplication/vnd.commonspace tika
application/vnd.contact.cmsgapplication/vnd.contact.cmsg tika
application/vnd.cosmocallerapplication/vnd.cosmocaller tika
application/vnd.crick.clickerapplication/vnd.crick.clicker tika
application/vnd.crick.clicker.keyboardapplication/vnd.crick.clicker.keyboard tika
application/vnd.crick.clicker.paletteapplication/vnd.crick.clicker.palette tika
application/vnd.crick.clicker.templateapplication/vnd.crick.clicker.template tika
application/vnd.crick.clicker.wordbankapplication/vnd.crick.clicker.wordbank tika
application/vnd.criticaltools.wbs+xmlapplication/vnd.criticaltools.wbs+xml tika
application/vnd.ctc-posmlapplication/vnd.ctc-posml tika
application/vnd.ctct.ws+xmlapplication/vnd.ctct.ws+xml tika
application/vnd.cups-pdfapplication/vnd.cups-pdf tika
application/vnd.cups-postscriptapplication/vnd.cups-postscript tika
application/vnd.cups-ppdapplication/vnd.cups-ppd tika
application/vnd.cups-rasterCUPS Raster ffw
application/vnd.cups-raster tika
application/vnd.cups-rawapplication/vnd.cups-raw tika
application/vnd.curl.carapplication/vnd.curl.car tika
application/vnd.curl.pcurlapplication/vnd.curl.pcurl tika
application/vnd.cybankapplication/vnd.cybank tika
application/vnd.data-vision.rdzapplication/vnd.data-vision.rdz tika
application/vnd.denovo.fcselayout-linkapplication/vnd.denovo.fcselayout-link tika
application/vnd.dir-bi.plate-dl-nosuffixapplication/vnd.dir-bi.plate-dl-nosuffix tika
application/vnd.dnaapplication/vnd.dna tika
application/vnd.dolby.mlpapplication/vnd.dolby.mlp tika
application/vnd.dolby.mobile.1application/vnd.dolby.mobile.1 tika
application/vnd.dolby.mobile.2application/vnd.dolby.mobile.2 tika
application/vnd.dpgraphapplication/vnd.dpgraph tika
application/vnd.dreamfactoryapplication/vnd.dreamfactory tika
application/vnd.dvb.esgcontainerapplication/vnd.dvb.esgcontainer tika
application/vnd.dvb.ipdcdftnotifaccessapplication/vnd.dvb.ipdcdftnotifaccess tika
application/vnd.dvb.ipdcesgaccessapplication/vnd.dvb.ipdcesgaccess tika
application/vnd.dvb.ipdcroamingapplication/vnd.dvb.ipdcroaming tika
application/vnd.dvb.iptv.alfec-baseapplication/vnd.dvb.iptv.alfec-base tika
application/vnd.dvb.iptv.alfec-enhancementapplication/vnd.dvb.iptv.alfec-enhancement tika
application/vnd.dvb.notif-aggregate-root+xmlapplication/vnd.dvb.notif-aggregate-root+xml tika
application/vnd.dvb.notif-container+xmlapplication/vnd.dvb.notif-container+xml tika
application/vnd.dvb.notif-generic+xmlapplication/vnd.dvb.notif-generic+xml tika
application/vnd.dvb.notif-ia-msglist+xmlapplication/vnd.dvb.notif-ia-msglist+xml tika
application/vnd.dvb.notif-ia-registration-request+xmlapplication/vnd.dvb.notif-ia-registration-request+xml tika
application/vnd.dvb.notif-ia-registration-response+xmlapplication/vnd.dvb.notif-ia-registration-response+xml tika
application/vnd.dvb.notif-init+xmlapplication/vnd.dvb.notif-init+xml tika
application/vnd.dxrapplication/vnd.dxr tika
application/vnd.dynageoapplication/vnd.dynageo tika
application/vnd.ecdis-updateapplication/vnd.ecdis-update tika
application/vnd.ecowin.chartapplication/vnd.ecowin.chart tika
application/vnd.ecowin.filerequestapplication/vnd.ecowin.filerequest tika
application/vnd.ecowin.fileupdateapplication/vnd.ecowin.fileupdate tika
application/vnd.ecowin.seriesapplication/vnd.ecowin.series tika
application/vnd.ecowin.seriesrequestapplication/vnd.ecowin.seriesrequest tika
application/vnd.ecowin.seriesupdateapplication/vnd.ecowin.seriesupdate tika
application/vnd.emclient.accessrequest+xmlapplication/vnd.emclient.accessrequest+xml tika
application/vnd.enlivenapplication/vnd.enliven tika
application/vnd.epson.esfapplication/vnd.epson.esf tika
application/vnd.epson.msfapplication/vnd.epson.msf tika
application/vnd.epson.quickanimeapplication/vnd.epson.quickanime tika
application/vnd.epson.saltapplication/vnd.epson.salt tika
application/vnd.epson.ssfapplication/vnd.epson.ssf tika
application/vnd.ericsson.quickcallapplication/vnd.ericsson.quickcall tika
application/vnd.eszigno3+xmlapplication/vnd.eszigno3+xml tika
application/vnd.etsi.aoc+xmlapplication/vnd.etsi.aoc+xml tika
application/vnd.etsi.cug+xmlapplication/vnd.etsi.cug+xml tika
application/vnd.etsi.iptvcommand+xmlapplication/vnd.etsi.iptvcommand+xml tika
application/vnd.etsi.iptvdiscovery+xmlapplication/vnd.etsi.iptvdiscovery+xml tika
application/vnd.etsi.iptvprofile+xmlapplication/vnd.etsi.iptvprofile+xml tika
application/vnd.etsi.iptvsad-bc+xmlapplication/vnd.etsi.iptvsad-bc+xml tika
application/vnd.etsi.iptvsad-cod+xmlapplication/vnd.etsi.iptvsad-cod+xml tika
application/vnd.etsi.iptvsad-npvr+xmlapplication/vnd.etsi.iptvsad-npvr+xml tika
application/vnd.etsi.iptvueprofile+xmlapplication/vnd.etsi.iptvueprofile+xml tika
application/vnd.etsi.mcid+xmlapplication/vnd.etsi.mcid+xml tika
application/vnd.etsi.sci+xmlapplication/vnd.etsi.sci+xml tika
application/vnd.etsi.simservs+xmlapplication/vnd.etsi.simservs+xml tika
application/vnd.eudora.dataapplication/vnd.eudora.data tika
application/vnd.ezpix-albumapplication/vnd.ezpix-album tika
application/vnd.ezpix-packageapplication/vnd.ezpix-package tika
application/vnd.f-secure.mobileapplication/vnd.f-secure.mobile tika
application/vnd.fdfFDF ffw
Forms Data Format tika
application/vnd.fdsn.mseedapplication/vnd.fdsn.mseed tika
application/vnd.fdsn.seedapplication/vnd.fdsn.seed tika
application/vnd.ffsnsapplication/vnd.ffsns tika
application/vnd.fintsapplication/vnd.fints tika
application/vnd.flographitapplication/vnd.flographit tika
application/vnd.fluxtime.clipapplication/vnd.fluxtime.clip tika
application/vnd.font-fontforge-sfdSpline Font Database ffw
application/vnd.font-fontforge-sfd tika
application/vnd.framemakerFrameMaker ffw
application/vnd.framemaker tika
—  application/vnd.framemaker; version=”2.0″Adobe FrameMaker Document 2.0 pronom
—  application/vnd.framemaker; version=”3.0″Adobe FrameMaker Document 3.0 pronom
—  application/vnd.framemaker; version=”4.0″Adobe FrameMaker Document 4.0 pronom
—  application/vnd.framemaker; version=”5.0″Adobe FrameMaker Document 5.0 pronom
—  application/vnd.framemaker; version=”5.5″Adobe FrameMaker Document 5.5 pronom
—  application/vnd.framemaker; version=”6.0″Adobe FrameMaker Document 6.0 pronom
—  application/vnd.framemaker; version=”7.0″Adobe FrameMaker Document 7.0 pronom
—  application/vnd.framemaker; version=”8.0″Adobe FrameMaker Document 8.0 pronom
—  application/vnd.framemaker; version=”9.0″Adobe FrameMaker Document 9.0 pronom
application/vnd.frogans.fncapplication/vnd.frogans.fnc tika
application/vnd.frogans.ltfapplication/vnd.frogans.ltf tika
application/vnd.fsc.weblaunchapplication/vnd.fsc.weblaunch tika
application/vnd.fujitsu.oasysapplication/vnd.fujitsu.oasys tika
application/vnd.fujitsu.oasys2application/vnd.fujitsu.oasys2 tika
application/vnd.fujitsu.oasys3application/vnd.fujitsu.oasys3 tika
application/vnd.fujitsu.oasysgpapplication/vnd.fujitsu.oasysgp tika
application/vnd.fujitsu.oasysprsapplication/vnd.fujitsu.oasysprs tika
application/vnd.fujixerox.art-exapplication/vnd.fujixerox.art-ex tika
application/vnd.fujixerox.art4application/vnd.fujixerox.art4 tika
application/vnd.fujixerox.dddapplication/vnd.fujixerox.ddd tika
application/vnd.fujixerox.docuworksapplication/vnd.fujixerox.docuworks tika
application/vnd.fujixerox.docuworks.binderapplication/vnd.fujixerox.docuworks.binder tika
application/vnd.fujixerox.hbplapplication/vnd.fujixerox.hbpl tika
application/vnd.fut-misnetapplication/vnd.fut-misnet tika
application/vnd.fuzzysheetapplication/vnd.fuzzysheet tika
application/vnd.genomatix.tuxedoapplication/vnd.genomatix.tuxedo tika
application/vnd.geo+jsonGeoJSON ffw
application/vnd.geogebra.fileGgb ffw
application/vnd.geogebra.file tika
—  application/vnd.geogebra.file; version=”1.0″GeoGebra 1.0 pronom
—  application/vnd.geogebra.file; version=”1.x”GeoGebra 1.x pronom
—  application/vnd.geogebra.file; version=”2″GeoGebra 2 pronom
—  application/vnd.geogebra.file; version=”3″GeoGebra 3 pronom
—  application/vnd.geogebra.file; version=”4″GeoGebra 4 pronom
—  application/vnd.geogebra.file; version=”5″GeoGebra 5 pronom
application/vnd.geogebra.toolapplication/vnd.geogebra.tool tika
application/vnd.geometry-explorerapplication/vnd.geometry-explorer tika
application/vnd.gerberGerber format ffw
Gerber Format pronom
application/vnd.gmxapplication/vnd.gmx tika
application/vnd.grafeqapplication/vnd.grafeq tika
application/vnd.gridmpapplication/vnd.gridmp tika
application/vnd.groove-accountapplication/vnd.groove-account tika
application/vnd.groove-helpapplication/vnd.groove-help tika
application/vnd.groove-identity-messageapplication/vnd.groove-identity-message tika
application/vnd.groove-injectorapplication/vnd.groove-injector tika
application/vnd.groove-tool-messageapplication/vnd.groove-tool-message tika
application/vnd.groove-tool-templateapplication/vnd.groove-tool-template tika
application/vnd.groove-vcardapplication/vnd.groove-vcard tika
application/vnd.handheld-entertainment+xmlapplication/vnd.handheld-entertainment+xml tika
application/vnd.hbciapplication/vnd.hbci tika
application/vnd.hcl-bireportsapplication/vnd.hcl-bireports tika
application/vnd.hhe.lesson-playerapplication/vnd.hhe.lesson-player tika
application/vnd.hp-hpglapplication/vnd.hp-hpgl tika
Hewlett Packard Graphics Language pronom
application/vnd.hp-hpidapplication/vnd.hp-hpid tika
application/vnd.hp-hpsapplication/vnd.hp-hps tika
application/vnd.hp-jlytapplication/vnd.hp-jlyt tika
application/vnd.hp-pclPCL ffw
application/vnd.hp-pcl tika
application/vnd.hp-pclxlPCL ffw
application/vnd.hp-pclxl tika
application/vnd.httphoneapplication/vnd.httphone tika
application/vnd.hydrostatix.sof-dataapplication/vnd.hydrostatix.sof-data tika
application/vnd.hzn-3d-crosswordapplication/vnd.hzn-3d-crossword tika
application/vnd.ibm.afplinedataapplication/vnd.ibm.afplinedata tika
application/vnd.ibm.electronic-mediaapplication/vnd.ibm.electronic-media tika
application/vnd.ibm.minipayapplication/vnd.ibm.minipay tika
application/vnd.ibm.modcapapplication/vnd.ibm.modcap tika
application/vnd.ibm.rights-managementapplication/vnd.ibm.rights-management tika
application/vnd.ibm.secure-containerapplication/vnd.ibm.secure-container tika
application/vnd.iccprofileapplication/vnd.iccprofile tika
application/vnd.igloaderapplication/vnd.igloader tika
application/vnd.immervision-ivpapplication/vnd.immervision-ivp tika
application/vnd.immervision-ivuapplication/vnd.immervision-ivu tika
application/vnd.informedcontrol.rms+xmlapplication/vnd.informedcontrol.rms+xml tika
application/vnd.informix-visionaryapplication/vnd.informix-visionary tika
application/vnd.intercon.formnetapplication/vnd.intercon.formnet tika
application/vnd.intertrust.digiboxapplication/vnd.intertrust.digibox tika
application/vnd.intertrust.nncpapplication/vnd.intertrust.nncp tika
application/vnd.intu.qboapplication/vnd.intu.qbo tika
application/vnd.intu.qfxapplication/vnd.intu.qfx tika
application/vnd.iptc.g2.conceptitem+xmlapplication/vnd.iptc.g2.conceptitem+xml tika
application/vnd.iptc.g2.knowledgeitem+xmlapplication/vnd.iptc.g2.knowledgeitem+xml tika
application/vnd.iptc.g2.newsitem+xmlapplication/vnd.iptc.g2.newsitem+xml tika
application/vnd.iptc.g2.packageitem+xmlapplication/vnd.iptc.g2.packageitem+xml tika
application/vnd.ipunplugged.rcprofileapplication/vnd.ipunplugged.rcprofile tika
application/vnd.irepository.package+xmlapplication/vnd.irepository.package+xml tika
application/vnd.is-xprapplication/vnd.is-xpr tika
application/vnd.jamapplication/vnd.jam tika
application/vnd.japannet-directory-serviceapplication/vnd.japannet-directory-service tika
application/vnd.japannet-jpnstore-wakeupapplication/vnd.japannet-jpnstore-wakeup tika
application/vnd.japannet-payment-wakeupapplication/vnd.japannet-payment-wakeup tika
application/vnd.japannet-registrationapplication/vnd.japannet-registration tika
application/vnd.japannet-registration-wakeupapplication/vnd.japannet-registration-wakeup tika
application/vnd.japannet-setstore-wakeupapplication/vnd.japannet-setstore-wakeup tika
application/vnd.japannet-verificationapplication/vnd.japannet-verification tika
application/vnd.japannet-verification-wakeupapplication/vnd.japannet-verification-wakeup tika
application/vnd.jcp.javame.midlet-rmsapplication/vnd.jcp.javame.midlet-rms tika
application/vnd.jispapplication/vnd.jisp tika
application/vnd.joost.joda-archiveapplication/vnd.joost.joda-archive tika
application/vnd.kahootzapplication/vnd.kahootz tika
application/vnd.kde.karbonapplication/vnd.kde.karbon tika
application/vnd.kde.kchartKChart File tika
application/vnd.kde.kformulaapplication/vnd.kde.kformula tika
application/vnd.kde.kivioapplication/vnd.kde.kivio tika
application/vnd.kde.kontourapplication/vnd.kde.kontour tika
application/vnd.kde.kpresenterKPresenter File tika
application/vnd.kde.kspreadKSpread File tika
application/vnd.kde.kwordKWord File tika
application/vnd.kenameaappapplication/vnd.kenameaapp tika
application/vnd.kidspirationapplication/vnd.kidspiration tika
application/vnd.kinarapplication/vnd.kinar tika
application/vnd.koanSSEYO Koan File tika
application/vnd.kodak-descriptorapplication/vnd.kodak-descriptor tika
application/vnd.lasLAS (LASer) File Format, Version 1.4 fdd
application/vnd.liberty-request+xmlapplication/vnd.liberty-request+xml tika
application/vnd.llamagraphics.life-balance.desktopapplication/vnd.llamagraphics.life-balance.desktop tika
application/vnd.llamagraphics.life-balance.exchange+xmlapplication/vnd.llamagraphics.life-balance.exchange+xml tika
application/vnd.lotus-1-2-3Lotus 1-2-3 ffw
application/vnd.lotus-1-2-3 tika
—  application/vnd.lotus-1-2-3; version=”1.0″Lotus 1-2-3 Worksheet 1.0 pronom
—  application/vnd.lotus-1-2-3; version=”2.0″Lotus 1-2-3 Worksheet 2.0 pronom
—  application/x-123; version=”1.0″Lotus 1-2-3 Worksheet 1.0 pronom
—  application/x-123; version=”2.0″Lotus 1-2-3 Worksheet 2.0 pronom
application/vnd.lotus-1-2-3; version=”3.0″Lotus 1-2-3 Worksheet 3.0 pronom
application/vnd.lotus-1-2-3; version=”4-5″Lotus 1-2-3 Worksheet 4-5 pronom
application/vnd.lotus-approachapplication/vnd.lotus-approach tika
Lotus Approach View File pronom
—  application/vnd.lotus-approach; version=”97″Lotus Approach View File 97 pronom
application/vnd.lotus-freelanceapplication/vnd.lotus-freelance tika
Lotus Freelance Smartmaster Graphics pronom
application/vnd.lotus-notesNotes Storage Facility ffw
application/vnd.lotus-notes tika
Lotus Notes Storage Facility fdd
—  application/vnd.lotus-notes; version=”2″Lotus Notes Database 2 pronom
—  application/vnd.lotus-notes; version=”3″Lotus Notes Database 3 pronom
—  application/vnd.lotus-notes; version=”4″Lotus Notes Database 4 pronom
application/vnd.lotus-organizerapplication/vnd.lotus-organizer tika
application/vnd.lotus-screencamapplication/vnd.lotus-screencam tika
application/vnd.lotus-wordproLotus Word Pro ffw
application/vnd.lotus-wordpro tika
AMI Professional Document pronom
application/vnd.lotus-wordpro; version=”96″Lotus WordPro Document 96 pronom
application/vnd.lotus-wordpro; version=”97/millennium”Lotus WordPro Document 97/Millennium pronom
application/vnd.macports.portpkgapplication/vnd.macports.portpkg tika
application/vnd.makemusic.notationFinale ffw
application/vnd.marlin.drm.actiontoken+xmlapplication/vnd.marlin.drm.actiontoken+xml tika
application/vnd.marlin.drm.conftoken+xmlapplication/vnd.marlin.drm.conftoken+xml tika
application/vnd.marlin.drm.license+xmlapplication/vnd.marlin.drm.license+xml tika
application/vnd.marlin.drm.mdcfapplication/vnd.marlin.drm.mdcf tika
application/vnd.mcdapplication/vnd.mcd tika
application/vnd.medcalcdataapplication/vnd.medcalcdata tika
application/vnd.mediastation.cdkeyapplication/vnd.mediastation.cdkey tika
application/vnd.meridian-slingshotapplication/vnd.meridian-slingshot tika
application/vnd.mferapplication/vnd.mfer tika
application/vnd.mfmpapplication/vnd.mfmp tika
application/vnd.micrografx.floapplication/vnd.micrografx.flo tika
application/vnd.micrografx.igxapplication/vnd.micrografx.igx tika
application/vnd.mifMaker Interchange Format ffw
FrameMaker Interchange Format tika
Adobe FrameMaker Interchange Format pronom
application/vnd.minisoft-hp3000-saveapplication/vnd.minisoft-hp3000-save tika
application/vnd.mitsubishi.misty-guard.trustwebapplication/vnd.mitsubishi.misty-guard.trustweb tika
application/vnd.mobius.dafapplication/vnd.mobius.daf tika
application/vnd.mobius.disapplication/vnd.mobius.dis tika
application/vnd.mobius.mbkapplication/vnd.mobius.mbk tika
application/vnd.mobius.mqyapplication/vnd.mobius.mqy tika
application/vnd.mobius.mslapplication/vnd.mobius.msl tika
application/vnd.mobius.plcapplication/vnd.mobius.plc tika
application/vnd.mobius.txfapplication/vnd.mobius.txf tika
application/vnd.mophun.applicationapplication/vnd.mophun.application tika
application/vnd.mophun.certificateapplication/vnd.mophun.certificate tika
application/vnd.motorola.flexsuiteapplication/vnd.motorola.flexsuite tika
application/vnd.motorola.flexsuite.adsiapplication/vnd.motorola.flexsuite.adsi tika
application/vnd.motorola.flexsuite.fisapplication/vnd.motorola.flexsuite.fis tika
application/vnd.motorola.flexsuite.gotapapplication/vnd.motorola.flexsuite.gotap tika
application/vnd.motorola.flexsuite.kmrapplication/vnd.motorola.flexsuite.kmr tika
application/vnd.motorola.flexsuite.ttcapplication/vnd.motorola.flexsuite.ttc tika
application/vnd.motorola.flexsuite.wemapplication/vnd.motorola.flexsuite.wem tika
application/vnd.motorola.iprmapplication/vnd.motorola.iprm tika
application/vnd.mozilla.xul+xmlapplication/vnd.mozilla.xul+xml tika
application/vnd.ms-artgalryapplication/vnd.ms-artgalry tika
application/vnd.ms-asfASF ffw
application/vnd.ms-asf tika
Advanced Systems Format pronom
ASF (Advanced Systems Format) fdd
application/vnd.ms-cab-compressedCabinet ffw
application/vnd.ms-cab-compressed tika
application/vnd.ms-excel.addin.macroenabled.12; version=”2007″Microsoft Excel Macro-Enabled Add-In 2007 pronom
application/vnd.ms-excel.sheet.binary.macroenabled.12; version=”2007 onwards”Microsoft Excel Non-XML Binary Workbook 2007 onwards pronom
application/vnd.ms-excel.sheet.macroenabled.12; version=”2007″Microsoft Excel Macro-Enabled 2007 pronom
application/vnd.ms-excel.template.macroenabled.12; version=”2007″Microsoft Excel Macro-Enabled Template 2007 pronom
application/vnd.ms-fontobjectEmbedded OpenType ffw
application/vnd.ms-fontobject tika
application/vnd.ms-htmlhelpCHM ffw
application/vnd.ms-htmlhelp tika
Microsoft Compiled HTML Help pronom
application/vnd.ms-imsapplication/vnd.ms-ims tika
application/vnd.ms-lrmapplication/vnd.ms-lrm tika
application/vnd.ms-officethemeMicrosoft Office Theme pronom
application/vnd.ms-outlook-pstOutlook Personal Folders File Format tika
application/vnd.ms-package.3dmanufacturing-3dmodel+xml3MF ffw
3MF 3D Manufacturing Format pronom
application/vnd.ms-pki.seccatapplication/vnd.ms-pki.seccat tika
application/vnd.ms-pki.stlapplication/vnd.ms-pki.stl tika
application/vnd.ms-playready.initiator+xmlapplication/vnd.ms-playready.initiator+xml tika
application/vnd.ms-powerpoint.addin.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Add-In 2007 pronom
application/vnd.ms-powerpoint.presentation.macroenabled.12; version=”2007 onwards”Macro Enabled Microsoft Powerpoint 2007 Onwards pronom
application/vnd.ms-powerpoint.slide.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Slide 2007 pronom
application/vnd.ms-powerpoint.slideshow.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Show 2007 pronom
application/vnd.ms-powerpoint.template.macroenabled.12; version=”2007″Microsoft PowerPoint Macro-Enabled Template 2007 pronom
application/vnd.ms-printing.printticket+xml3MF ffw
application/vnd.ms-tnefTransport Neutral Encapsulation Format ffw
application/vnd.ms-tnef tika
application/vnd.ms-visio.drawing.macroenabled.main+xml; version=”2013″Microsoft Visio Macro-Enabled Drawing 2013 pronom
application/vnd.ms-visio.drawing.main+xml; version=”2013″Microsoft Visio Drawing 2013 pronom
application/vnd.ms-visio.stencil.macroenabled.main+xml; version=”2013″Microsoft Visio Macro-Enabled Stencil 2013 pronom
application/vnd.ms-visio.stencil.main+xml; version=”2013″Microsoft Visio Stencil 2013 pronom
application/vnd.ms-visio.template.macroenabled.main+xml; version=”2013″Microsoft Visio Macro-Enabled Template 2013 pronom
application/vnd.ms-visio.template.main+xml; version=”2013″Microsoft Visio Template 2013 pronom
application/vnd.ms-wmdrm.lic-chlg-reqapplication/vnd.ms-wmdrm.lic-chlg-req tika
application/vnd.ms-wmdrm.lic-respapplication/vnd.ms-wmdrm.lic-resp tika
application/vnd.ms-wmdrm.meter-chlg-reqapplication/vnd.ms-wmdrm.meter-chlg-req tika
application/vnd.ms-wmdrm.meter-respapplication/vnd.ms-wmdrm.meter-resp tika
application/vnd.ms-word.document.macroenabled.12; version=”2007 onwards”Macro enabled Microsoft Word Document OOXML 2007 Onwards pronom
application/vnd.ms-word.template.macroenabled.12; version=”2007 onwards”Microsoft Word Macro-Enabled Document Template 2007 onwards pronom
application/vnd.ms-wplapplication/vnd.ms-wpl tika
Windows Media Playlist pronom
application/vnd.mseqapplication/vnd.mseq tika
application/vnd.msignapplication/vnd.msign tika
application/vnd.multiad.creatorapplication/vnd.multiad.creator tika
application/vnd.multiad.creator.cifapplication/vnd.multiad.creator.cif tika
application/vnd.music-niffapplication/vnd.music-niff tika
Notation Interchange File Format pronom
application/vnd.musicianapplication/vnd.musician tika
application/vnd.muvee.styleapplication/vnd.muvee.style tika
application/vnd.ncd.controlapplication/vnd.ncd.control tika
application/vnd.ncd.referenceapplication/vnd.ncd.reference tika
application/vnd.nervanaapplication/vnd.nervana tika
application/vnd.netfpxapplication/vnd.netfpx tika
application/vnd.neurolanguage.nluapplication/vnd.neurolanguage.nlu tika
application/vnd.nitfNational Imagery Transmission Format ffw
—  application/vnd.nitf; version=”1.0″National Imagery Transmission Format 1.0 pronom
—  application/vnd.nitf; version=”2.0″National Imagery Transmission Format 2.0 pronom
—  application/vnd.nitf; version=”2.1″National Imagery Transmission Format 2.1 pronom
application/vnd.noblenet-directoryapplication/vnd.noblenet-directory tika
application/vnd.noblenet-sealerapplication/vnd.noblenet-sealer tika
application/vnd.noblenet-webapplication/vnd.noblenet-web tika
application/vnd.nokia.catalogsapplication/vnd.nokia.catalogs tika
application/vnd.nokia.conml+wbxmlapplication/vnd.nokia.conml+wbxml tika
application/vnd.nokia.conml+xmlapplication/vnd.nokia.conml+xml tika
application/vnd.nokia.iptv.config+xmlapplication/vnd.nokia.iptv.config+xml tika
application/vnd.nokia.isds-radio-presetsapplication/vnd.nokia.isds-radio-presets tika
application/vnd.nokia.landmark+wbxmlapplication/vnd.nokia.landmark+wbxml tika
application/vnd.nokia.landmark+xmlapplication/vnd.nokia.landmark+xml tika
application/vnd.nokia.landmarkcollection+xmlapplication/vnd.nokia.landmarkcollection+xml tika
application/vnd.nokia.n-gage.ac+xmlapplication/vnd.nokia.n-gage.ac+xml tika
application/vnd.nokia.n-gage.dataapplication/vnd.nokia.n-gage.data tika
application/vnd.nokia.n-gage.symbian.installapplication/vnd.nokia.n-gage.symbian.install tika
application/vnd.nokia.ncdapplication/vnd.nokia.ncd tika
application/vnd.nokia.pcd+wbxmlapplication/vnd.nokia.pcd+wbxml tika
application/vnd.nokia.pcd+xmlapplication/vnd.nokia.pcd+xml tika
application/vnd.nokia.radio-presetapplication/vnd.nokia.radio-preset tika
application/vnd.nokia.radio-presetsapplication/vnd.nokia.radio-presets tika
application/vnd.novadigm.edmapplication/vnd.novadigm.edm tika
application/vnd.novadigm.edxapplication/vnd.novadigm.edx tika
application/vnd.novadigm.extapplication/vnd.novadigm.ext tika
application/vnd.oasis.opendocument.baseOpenDocument ffw
application/vnd.oasis.opendocument.chartOpenDocument ffw
OpenDocument v1.0: Chart document tika
OpenDocument Chart Document Format (ODC), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.chart-templateOpenDocument ffw
OpenDocument v1.0: Chart document used as template tika
OpenDocument Chart Document Format (ODC), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.databaseOpenDocument ffw
application/vnd.oasis.opendocument.database tika
OpenDocument Database Front End Document Format (ODB), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.formula-templateOpenDocument ffw
OpenDocument v1.0: Formula document used as template tika
application/vnd.oasis.opendocument.graphicsOpenDocument ffw
OpenDocument Drawing ffw
OpenDocument v1.0: Graphics document (Drawing) tika
OpenDocument Drawing Document Format (ODG), Version 1.2, ISO 26300-1:2015 fdd
—  application/vnd.oasis.opendocument.graphics; version=”1.0″OpenDocument Graphics 1.0 pronom
—  application/vnd.oasis.opendocument.graphics; version=”1.1″OpenDocument Graphics 1.1 pronom
—  application/vnd.oasis.opendocument.graphics; version=”1.2″OpenDocument Graphics 1.2 pronom
application/vnd.oasis.opendocument.graphics-templateOpenDocument ffw
OpenDocument Drawing ffw
OpenDocument v1.0: Graphics document used as template tika
OpenDocument Drawing Document Format (ODG), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.imageOpenDocument ffw
OpenDocument v1.0: Image document tika
application/vnd.oasis.opendocument.image-templateOpenDocument ffw
OpenDocument v1.0: Image document used as template tika
application/vnd.oasis.opendocument.presentationOpenDocument ffw
OpenDocument Presentation ffw
OpenDocument v1.0: Presentation document tika
OpenDocument Presentation Document Format (ODP), Version 1.2, ISO 26300-1:2015 fdd
—  application/vnd.oasis.opendocument.presentation; version=”1.0″OpenDocument Presentation 1.0 pronom
—  application/vnd.oasis.opendocument.presentation; version=”1.1″OpenDocument Presentation 1.1 pronom
—  application/vnd.oasis.opendocument.presentation; version=”1.2″OpenDocument Presentation 1.2 pronom
application/vnd.oasis.opendocument.presentation-templateOpenDocument ffw
OpenDocument Presentation ffw
OpenDocument v1.0: Presentation document used as template tika
OpenDocument Presentation Document Format (ODP), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.spreadsheetOpenDocument Spreadsheet ffw
OpenDocument ffw
OpenDocument v1.0: Spreadsheet document tika
OpenDocument Spreadsheet Document Format (ODS), Version 1.1, ISO 26300:2006 fdd
OpenDocument Spreadsheet Document Format (ODS), Version 1.2, ISO 26300:2015 fdd
—  application/vnd.oasis.opendocument.spreadsheet; version=”1.0″OpenDocument Spreadsheet 1.0 pronom
—  application/vnd.oasis.opendocument.spreadsheet; version=”1.1″OpenDocument Spreadsheet 1.1 pronom
—  application/vnd.oasis.opendocument.spreadsheet; version=”1.2″OpenDocument Spreadsheet 1.2 pronom
application/vnd.oasis.opendocument.spreadsheet-templateOpenDocument Spreadsheet ffw
OpenDocument ffw
OpenDocument v1.0: Spreadsheet document used as template tika
OpenDocument Spreadsheet Document Format (ODS), Version 1.1, ISO 26300:2006 fdd
OpenDocument Spreadsheet Document Format (ODS), Version 1.2, ISO 26300:2015 fdd
application/vnd.oasis.opendocument.textOpenDocument ffw
OpenDocument Text ffw
OpenDocument v1.0: Text document tika
OpenDocument Text Document Format (ODT), Version 1.1, ISO/IEC 26300:2006 fdd
OpenDocument Text Document Format (ODT), Version 1.2, ISO 26300-1:2015 fdd
—  application/vnd.oasis.opendocument.text; version=”1.0″OpenDocument Text 1.0 pronom
—  application/vnd.oasis.opendocument.text; version=”1.1″OpenDocument Text 1.1 pronom
—  application/vnd.oasis.opendocument.text; version=”1.2″OpenDocument Text 1.2 pronom
application/vnd.oasis.opendocument.text-masterOpenDocument ffw
OpenDocument v1.0: Global Text document tika
OpenDocument Text Document Format (ODT), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.text-templateOpenDocument ffw
OpenDocument Text ffw
OpenDocument v1.0: Text document used as template tika
OpenDocument Text Document Format (ODT), Version 1.2, ISO 26300-1:2015 fdd
application/vnd.oasis.opendocument.text-webOpenDocument ffw
OpenDocument v1.0: Text document used as template for HTML documents tika
application/vnd.obnapplication/vnd.obn tika
application/vnd.olpc-sugarapplication/vnd.olpc-sugar tika
application/vnd.oma-scws-configapplication/vnd.oma-scws-config tika
application/vnd.oma-scws-http-requestapplication/vnd.oma-scws-http-request tika
application/vnd.oma-scws-http-responseapplication/vnd.oma-scws-http-response tika
application/vnd.oma.bcast.associated-procedure-parameter+xmlapplication/vnd.oma.bcast.associated-procedure-parameter+xml tika
application/vnd.oma.bcast.drm-trigger+xmlapplication/vnd.oma.bcast.drm-trigger+xml tika
application/vnd.oma.bcast.imd+xmlapplication/vnd.oma.bcast.imd+xml tika
application/vnd.oma.bcast.ltkmapplication/vnd.oma.bcast.ltkm tika
application/vnd.oma.bcast.notification+xmlapplication/vnd.oma.bcast.notification+xml tika
application/vnd.oma.bcast.provisioningtriggerapplication/vnd.oma.bcast.provisioningtrigger tika
application/vnd.oma.bcast.sgbootapplication/vnd.oma.bcast.sgboot tika
application/vnd.oma.bcast.sgdd+xmlapplication/vnd.oma.bcast.sgdd+xml tika
application/vnd.oma.bcast.sgduapplication/vnd.oma.bcast.sgdu tika
application/vnd.oma.bcast.simple-symbol-containerapplication/vnd.oma.bcast.simple-symbol-container tika
application/vnd.oma.bcast.smartcard-trigger+xmlapplication/vnd.oma.bcast.smartcard-trigger+xml tika
application/vnd.oma.bcast.sprov+xmlapplication/vnd.oma.bcast.sprov+xml tika
application/vnd.oma.bcast.stkmapplication/vnd.oma.bcast.stkm tika
application/vnd.oma.dcdapplication/vnd.oma.dcd tika
application/vnd.oma.dcdcapplication/vnd.oma.dcdc tika
application/vnd.oma.dd2+xmlapplication/vnd.oma.dd2+xml tika
application/vnd.oma.drm.risd+xmlapplication/vnd.oma.drm.risd+xml tika
application/vnd.oma.group-usage-list+xmlapplication/vnd.oma.group-usage-list+xml tika
application/vnd.oma.poc.detailed-progress-report+xmlapplication/vnd.oma.poc.detailed-progress-report+xml tika
application/vnd.oma.poc.final-report+xmlapplication/vnd.oma.poc.final-report+xml tika
application/vnd.oma.poc.groups+xmlapplication/vnd.oma.poc.groups+xml tika
application/vnd.oma.poc.invocation-descriptor+xmlapplication/vnd.oma.poc.invocation-descriptor+xml tika
application/vnd.oma.poc.optimized-progress-report+xmlapplication/vnd.oma.poc.optimized-progress-report+xml tika
application/vnd.oma.xcap-directory+xmlapplication/vnd.oma.xcap-directory+xml tika
application/vnd.omads-email+xmlapplication/vnd.omads-email+xml tika
application/vnd.omads-file+xmlapplication/vnd.omads-file+xml tika
application/vnd.omads-folder+xmlapplication/vnd.omads-folder+xml tika
application/vnd.omaloc-supl-initapplication/vnd.omaloc-supl-init tika
application/vnd.openofficeorg.extensionapplication/vnd.openofficeorg.extension tika
application/vnd.openxmlformats-officedocument.presentationml.documentOOXML Format Family — ISO/IEC 29500 and ECMA 376 fdd
application/vnd.openxmlformats-officedocument.spreadsheetml.documentOOXML Format Family — ISO/IEC 29500 and ECMA 376 fdd
application/vnd.osa.netdeployapplication/vnd.osa.netdeploy tika
application/vnd.osgi.bundleapplication/vnd.osgi.bundle tika
application/vnd.osgi.dpapplication/vnd.osgi.dp tika
application/vnd.otps.ct-kip+xmlapplication/vnd.otps.ct-kip+xml tika
application/vnd.pagemakerPagemaker Document (Generic) pronom
application/vnd.palmPalm OS Database ffw
PRC (Palm OS) ffw
application/vnd.palm tika
application/vnd.paos.xmlapplication/vnd.paos.xml tika
application/vnd.pdfPDF (Portable Document Format) Family fdd
application/vnd.pg.formatapplication/vnd.pg.format tika
application/vnd.pg.osasliapplication/vnd.pg.osasli tika
application/vnd.piaccess.application-licenceapplication/vnd.piaccess.application-licence tika
application/vnd.picselapplication/vnd.picsel tika
application/vnd.poc.group-advertisement+xmlapplication/vnd.poc.group-advertisement+xml tika
application/vnd.pocketlearnapplication/vnd.pocketlearn tika
application/vnd.powerbuilder6application/vnd.powerbuilder6 tika
application/vnd.powerbuilder6-sapplication/vnd.powerbuilder6-s tika
application/vnd.powerbuilder7application/vnd.powerbuilder7 tika
application/vnd.powerbuilder7-sapplication/vnd.powerbuilder7-s tika
application/vnd.powerbuilder75application/vnd.powerbuilder75 tika
application/vnd.powerbuilder75-sapplication/vnd.powerbuilder75-s tika
application/vnd.preminetapplication/vnd.preminet tika
application/vnd.previewsystems.boxapplication/vnd.previewsystems.box tika
application/vnd.proteus.magazineapplication/vnd.proteus.magazine tika
application/vnd.publishare-delta-treeapplication/vnd.publishare-delta-tree tika
application/vnd.pvi.ptid1application/vnd.pvi.ptid1 tika
application/vnd.pwg-multiplexedapplication/vnd.pwg-multiplexed tika
application/vnd.pwg-xhtml-print+xmlapplication/vnd.pwg-xhtml-print+xml tika
application/vnd.qualcomm.brew-app-resapplication/vnd.qualcomm.brew-app-res tika
application/vnd.quark.quarkxpressQuarkXPress ffw
application/vnd.quark.quarkxpress tika
Quark Xpress Data File pronom
Quark Xpress Report File pronom
application/vnd.quark.quarkxpress; version=”10″Quark Xpress Data File 10 pronom
application/vnd.quark.quarkxpress; version=”6″Quark Xpress Data File 6 pronom
application/vnd.quark.quarkxpress; version=”9″Quark Xpress Data File 9 pronom
application/vnd.rapidapplication/vnd.rapid tika
application/vnd.rarRAR ffw
RAR Archive File Format Family fdd
—  application/vnd.rar; version=”2.0″RAR Archive 2.0 pronom
—  application/vnd.rar; version=”2.9″RAR Archive 2.9 pronom
—  application/vnd.rar; version=”5.0″RAR Archive 5.0 pronom
application/vnd.recordare.musicxmlapplication/vnd.recordare.musicxml tika
Compressed Music XML pronom
application/vnd.recordare.musicxml+xmlapplication/vnd.recordare.musicxml+xml tika
Music XML pronom
MusicXML, Version 3.0 fdd
MusicXML File Format Family fdd
MusicXML, Version 3.1 fdd
application/vnd.renlearn.rlprintapplication/vnd.renlearn.rlprint tika
application/vnd.rim.codapplication/vnd.rim.cod tika
application/vnd.rn-realmediaRealMedia ffw
application/vnd.rn-realmedia tika
RealMedia pronom
RealVideo, Version 10 fdd
RealAudio, Version 10 fdd
application/vnd.route66.link66+xmlapplication/vnd.route66.link66+xml tika
application/vnd.ruckus.downloadapplication/vnd.ruckus.download tika
application/vnd.s3smsapplication/vnd.s3sms tika
application/vnd.sbm.cidapplication/vnd.sbm.cid tika
application/vnd.sbm.mid2application/vnd.sbm.mid2 tika
application/vnd.scribusScribus ffw
application/vnd.scribus tika
application/vnd.sealed.3dfapplication/vnd.sealed.3df tika
application/vnd.sealed.csfapplication/vnd.sealed.csf tika
application/vnd.sealed.docapplication/vnd.sealed.doc tika
application/vnd.sealed.emlapplication/vnd.sealed.eml tika
application/vnd.sealed.mhtapplication/vnd.sealed.mht tika
application/vnd.sealed.netapplication/vnd.sealed.net tika
application/vnd.sealed.pptapplication/vnd.sealed.ppt tika
application/vnd.sealed.tiffapplication/vnd.sealed.tiff tika
application/vnd.sealed.xlsapplication/vnd.sealed.xls tika
application/vnd.sealedmedia.softseal.htmlapplication/vnd.sealedmedia.softseal.html tika
application/vnd.sealedmedia.softseal.pdfapplication/vnd.sealedmedia.softseal.pdf tika
application/vnd.seemailapplication/vnd.seemail tika
application/vnd.semaapplication/vnd.sema tika
application/vnd.semdapplication/vnd.semd tika
application/vnd.semfapplication/vnd.semf tika
application/vnd.shana.informed.formdataapplication/vnd.shana.informed.formdata tika
application/vnd.shana.informed.formtemplateapplication/vnd.shana.informed.formtemplate tika
application/vnd.shana.informed.interchangeapplication/vnd.shana.informed.interchange tika
application/vnd.shana.informed.packageapplication/vnd.shana.informed.package tika
application/vnd.simtech-mindmapperapplication/vnd.simtech-mindmapper tika
application/vnd.smafapplication/vnd.smaf tika
application/vnd.smart.teacherapplication/vnd.smart.teacher tika
application/vnd.software602.filler.form+xmlapplication/vnd.software602.filler.form+xml tika
application/vnd.software602.filler.form-xml-zipapplication/vnd.software602.filler.form-xml-zip tika
application/vnd.solent.sdkm+xmlapplication/vnd.solent.sdkm+xml tika
application/vnd.spotfire.dxpapplication/vnd.spotfire.dxp tika
application/vnd.spotfire.sfsapplication/vnd.spotfire.sfs tika
application/vnd.sqlite3SQLite ffw
application/vnd.sss-codapplication/vnd.sss-cod tika
application/vnd.sss-dtfapplication/vnd.sss-dtf tika
application/vnd.sss-ntfapplication/vnd.sss-ntf tika
application/vnd.stardivision.chartStarOffice binary formats ffw
application/vnd.stardivision.impress-packedStarOffice binary formats ffw
application/vnd.stardivision.mailStarOffice binary formats ffw
application/vnd.stardivision.mathStarOffice binary formats ffw
application/vnd.stardivision.math tika
application/vnd.stardivision.writer-globalStarOffice binary formats ffw
application/vnd.stardivision.writer-global tika
application/vnd.street-streamapplication/vnd.street-stream tika
application/vnd.sun.wadl+xmlapplication/vnd.sun.wadl+xml tika
application/vnd.sun.xml.calcOpenOffice.org XML ffw
application/vnd.sun.xml.calc tika
—  application/vnd.sun.xml.calc; version=”1.0″OpenOffice Calc 1.0 pronom
application/vnd.sun.xml.calc.templateOpenOffice.org XML ffw
application/vnd.sun.xml.calc.template tika
application/vnd.sun.xml.drawOpenOffice.org XML ffw
SXD ffw
application/vnd.sun.xml.draw tika
—  application/vnd.sun.xml.draw; version=”1.0″OpenOffice Draw 1.0 pronom
application/vnd.sun.xml.draw.templateOpenOffice.org XML ffw
SXD ffw
application/vnd.sun.xml.draw.template tika
application/vnd.sun.xml.impressSXI ffw
OpenOffice.org XML ffw
application/vnd.sun.xml.impress tika
—  application/vnd.sun.xml.impress; version=”1.0″OpenOffice Impress 1.0 pronom
application/vnd.sun.xml.impress.templateSXI ffw
OpenOffice.org XML ffw
application/vnd.sun.xml.impress.template tika
application/vnd.sun.xml.mathOpenOffice.org XML ffw
application/vnd.sun.xml.math tika
application/vnd.sun.xml.writerSXW ffw
OpenOffice.org XML ffw
OpenOffice v1.0: Writer Document tika
—  application/vnd.sun.xml.writer; version=”1.0″OpenOffice Writer 1.0 pronom
application/vnd.sun.xml.writer.globalOpenOffice.org XML ffw
application/vnd.sun.xml.writer.global tika
application/vnd.sun.xml.writer.templateSTW ffw
OpenOffice.org XML ffw
application/vnd.sun.xml.writer.template tika
application/vnd.sus-calendarapplication/vnd.sus-calendar tika
application/vnd.svdapplication/vnd.svd tika
application/vnd.swiftview-icsapplication/vnd.swiftview-ics tika
application/vnd.symbian.installapplication/vnd.symbian.install tika
application/vnd.syncml+xmlapplication/vnd.syncml+xml tika
application/vnd.syncml.dm+wbxmlapplication/vnd.syncml.dm+wbxml tika
application/vnd.syncml.dm+xmlapplication/vnd.syncml.dm+xml tika
application/vnd.syncml.dm.notificationapplication/vnd.syncml.dm.notification tika
application/vnd.syncml.ds.notificationapplication/vnd.syncml.ds.notification tika
application/vnd.tao.intent-module-archiveapplication/vnd.tao.intent-module-archive tika
application/vnd.tcpdump.pcapTCPDump pcap packet capture tika
pcap Packet Capture pronom
pcap Next Generation Packet Capture pronom
application/vnd.tmobile-livetvapplication/vnd.tmobile-livetv tika
application/vnd.trid.tptapplication/vnd.trid.tpt tika
application/vnd.triscape.mxsapplication/vnd.triscape.mxs tika
application/vnd.trueappapplication/vnd.trueapp tika
application/vnd.truedocPFR ffw
application/vnd.truedoc tika
application/vnd.ufdlapplication/vnd.ufdl tika
application/vnd.uiq.themeapplication/vnd.uiq.theme tika
application/vnd.umajinapplication/vnd.umajin tika
application/vnd.unityapplication/vnd.unity tika
application/vnd.uoml+xmlapplication/vnd.uoml+xml tika
application/vnd.uplanet.alertapplication/vnd.uplanet.alert tika
application/vnd.uplanet.alert-wbxmlapplication/vnd.uplanet.alert-wbxml tika
application/vnd.uplanet.bearer-choiceapplication/vnd.uplanet.bearer-choice tika
application/vnd.uplanet.bearer-choice-wbxmlapplication/vnd.uplanet.bearer-choice-wbxml tika
application/vnd.uplanet.cacheopapplication/vnd.uplanet.cacheop tika
application/vnd.uplanet.cacheop-wbxmlapplication/vnd.uplanet.cacheop-wbxml tika
application/vnd.uplanet.channelapplication/vnd.uplanet.channel tika
application/vnd.uplanet.channel-wbxmlapplication/vnd.uplanet.channel-wbxml tika
application/vnd.uplanet.listapplication/vnd.uplanet.list tika
application/vnd.uplanet.list-wbxmlapplication/vnd.uplanet.list-wbxml tika
application/vnd.uplanet.listcmdapplication/vnd.uplanet.listcmd tika
application/vnd.uplanet.listcmd-wbxmlapplication/vnd.uplanet.listcmd-wbxml tika
application/vnd.uplanet.signalapplication/vnd.uplanet.signal tika
application/vnd.valve.source.materialValve Material Type ffw
application/vnd.vcxapplication/vnd.vcx tika
application/vnd.vd-studyapplication/vnd.vd-study tika
application/vnd.vectorworksapplication/vnd.vectorworks tika
—  application/vnd.vectorworks; version=”12.5″VectorWorks 12.5 pronom
—  application/vnd.vectorworks; version=”2009″VectorWorks 2009 pronom
—  application/vnd.vectorworks; version=”2010″Vectorworks 2010 pronom
—  application/vnd.vectorworks; version=”2015″Vectorworks 2015 pronom
application/vnd.vidsoft.vidconferenceapplication/vnd.vidsoft.vidconference tika
application/vnd.visio2013Visio VSDX Drawing File Format fdd
Visio VSDX Drawing File Format fdd
application/vnd.visionaryapplication/vnd.visionary tika
application/vnd.vividence.scriptfileapplication/vnd.vividence.scriptfile tika
application/vnd.vsfapplication/vnd.vsf tika
application/vnd.wap.sicapplication/vnd.wap.sic tika
application/vnd.wap.slcapplication/vnd.wap.slc tika
application/vnd.wap.wbxmlapplication/vnd.wap.wbxml tika
application/vnd.wap.wmlcCompiled WML Document tika
application/vnd.wap.wmlscriptcCompiled WML Script tika
application/vnd.webturboapplication/vnd.webturbo tika
application/vnd.wfa.wscapplication/vnd.wfa.wsc tika
application/vnd.wmcapplication/vnd.wmc tika
application/vnd.wmf.bootstrapapplication/vnd.wmf.bootstrap tika
application/vnd.wolfram.cdfComputable Document Format ffw
application/vnd.wolfram.cdf.textComputable Document Format ffw
application/vnd.wordperfectWordPerfect ffw
application/vnd.wordperfect tika
—  application/vnd.wordperfect; version=”4.0/4.1/4.2″WordPerfect 4.0/4.1/4.2 pronom
—  application/vnd.wordperfect; version=”5.0″WordPerfect for MS-DOS Document 5.0 pronom
—  application/vnd.wordperfect; version=”5.1″WordPerfect for MS-DOS/Windows Document 5.1 pronom
—  application/vnd.wordperfect; version=”5.2″WordPerfect for Windows Document 5.2 pronom
—  application/vnd.wordperfect; version=”6 onwards”Compound WordPerfect for Windows Document 6 onwards pronom
—  application/vnd.wordperfect; version=”6.0″WordPerfect for MS-DOS/Windows Document 6.0 pronom
application/vnd.wqdapplication/vnd.wqd tika
application/vnd.wrq-hp3000-labelledapplication/vnd.wrq-hp3000-labelled tika
application/vnd.wt.stfapplication/vnd.wt.stf tika
application/vnd.wv.csp+wbxmlapplication/vnd.wv.csp+wbxml tika
application/vnd.wv.csp+xmlapplication/vnd.wv.csp+xml tika
application/vnd.wv.ssp+xmlapplication/vnd.wv.ssp+xml tika
application/vnd.xaraXar (vector graphics) ffw
application/vnd.xara tika
application/vnd.xfdlapplication/vnd.xfdl tika
application/vnd.xfdl.webformapplication/vnd.xfdl.webform tika
application/vnd.xmi+xmlXML Metadata Interchange ffw
application/vnd.xmi+xml tika
application/vnd.xmpie.cpkgapplication/vnd.xmpie.cpkg tika
application/vnd.xmpie.dpkgapplication/vnd.xmpie.dpkg tika
application/vnd.xmpie.planapplication/vnd.xmpie.plan tika
application/vnd.xmpie.ppkgapplication/vnd.xmpie.ppkg tika
application/vnd.xmpie.xlimapplication/vnd.xmpie.xlim tika
application/vnd.yamaha.hv-dicapplication/vnd.yamaha.hv-dic tika
application/vnd.yamaha.hv-scriptapplication/vnd.yamaha.hv-script tika
application/vnd.yamaha.hv-voiceapplication/vnd.yamaha.hv-voice tika
application/vnd.yamaha.openscoreformatapplication/vnd.yamaha.openscoreformat tika
application/vnd.yamaha.openscoreformat.osfpvg+xmlapplication/vnd.yamaha.openscoreformat.osfpvg+xml tika
application/vnd.yamaha.smaf-audioapplication/vnd.yamaha.smaf-audio tika
application/vnd.yamaha.smaf-phraseapplication/vnd.yamaha.smaf-phrase tika
application/vnd.yellowriver-custom-menuapplication/vnd.yellowriver-custom-menu tika
application/vnd.zulapplication/vnd.zul tika
application/vnd.zzazz.deck+xmlapplication/vnd.zzazz.deck+xml tika
application/voicexml+xmlapplication/voicexml+xml tika
application/warcWARC ffw
WARC, Web ARChive file format fdd
application/warc-fieldsWARC ffw
application/watcherinfo+xmlapplication/watcherinfo+xml tika
application/whoispp-queryapplication/whoispp-query tika
application/whoispp-responseapplication/whoispp-response tika
application/winhlpapplication/winhlp tika
application/witaapplication/wita tika
application/wordperfectapplication/vnd.wordperfect tika
application/wordperfect5.1application/wordperfect5.1 tika
application/wsdl+xmlapplication/wsdl+xml tika
application/wspolicy+xmlapplication/wspolicy+xml tika
application/x-123application/x-123 tika
application/x-3ds3DS ffw
application/x-3dxmlplugin3DXML ffw
application/x-7z-compressed7z ffw
7-zip archive tika
application/x-abiwordapplication/x-abiword tika
application/x-acadDWG ffw
AutoCad Drawing tika
application/x-ace-compressedapplication/x-ace-compressed tika
application/x-adobe-indesignAdobe InDesign document tika
application/x-apple-diskimageApple Disk Image ffw
application/x-apple-diskimage tika
application/x-appleworksapplication/x-appleworks tika
application/x-archiveapplication/x-archive tika
—  application/vnd.debian.binary-packageDeb ffw
application/x-debian-package tika
—  application/x-debian-packageapplication/x-debian-package tika
application/x-arjapplication/x-arj tika
application/x-arj-compressedapplication/x-arj tika
application/x-aspxASP.NET githublinguist
application/x-astrotite-afaAstrotite ffw
application/x-authorware-binapplication/x-authorware-bin tika
application/x-authorware-mapapplication/x-authorware-map tika
application/x-authorware-segapplication/x-authorware-seg tika
application/x-autocadDWG ffw
AutoCad Drawing tika
application/x-axcryptAxCrypt tika
application/x-b6z-compressedB6Z ffw
application/x-bcpioapplication/x-bcpio tika
application/x-berkeley-dbBerkeley DB tika
—  application/x-berkeley-db;format=btreeBerkeley DB BTree Database tika
— —  application/x-berkeley-db;format=btree;version=2Berkeley DB Version 2 BTree Database tika
— —  application/x-berkeley-db;format=btree;version=3Berkeley DB Version 3 BTree Database tika
— —  application/x-berkeley-db;format=btree;version=4Berkeley DB Version 4 and 5 BTree Database tika
—  application/x-berkeley-db;format=hashBerkeley DB Hash Database tika
— —  application/x-berkeley-db;format=hash;version=2Berkeley DB Version 2 Hash Database tika
— —  application/x-berkeley-db;format=hash;version=3Berkeley DB Version 3 Hash Database tika
— —  application/x-berkeley-db;format=hash;version=4Berkeley DB Version 4 Hash Database tika
— —  application/x-berkeley-db;format=hash;version=5Berkeley DB Version 5 Hash Database tika
—  application/x-berkeley-db;format=logBerkeley DB Log Database tika
—  application/x-berkeley-db;format=queueBerkeley DB Queue Database tika
application/x-bittorrentTorrent file ffw
application/x-bittorrent tika
application/x-bplistapplication/x-bplist tika
—  application/x-webarchiveapplication/x-webarchive tika
application/x-bzipapplication/x-bzip tika
—  application/x-bzip2Bzip2 ffw
Bzip 2 UNIX Compressed File tika
BZIP2 Compressed Archive pronom
application/x-cbrComic Book Archive ffw
application/x-cdfCD Audio pronom
application/x-cdlinkVirtual CD-ROM CD Image File tika
application/x-cfs-compressedCompact File Set ffw
application/x-chatapplication/x-chat tika
application/x-chess-pgnPGN ffw
application/x-chess-pgn tika
application/x-chrome-packageChrome Extension Package tika
application/x-compressCompress (Unix) ffw
application/x-compress tika
Tape Archive (tar) File Format Family fdd
application/x-compressedTape Archive (tar) File Format Family fdd
application/x-cpioCpio ffw
UNIX CPIO Archive tika
application/x-cshapplication/x-csh tika
application/x-csvCSV ffw
application/x-dbasedBASE Table File Format (DBF) fdd
application/x-dbfdBASE Table File Format (DBF) fdd
application/x-dbmBerkeley DB tika
application/x-deflateZLIB Compressed Data Format tika
application/x-dexDalvik Executable Format tika
application/x-dgc-compressedDGCA ffw
application/x-directorShockwave (Director) ffw
Shockwave Movie tika
—  application/x-director; version=”macintosh”Macromedia Director Macintosh pronom
—  application/x-director; version=”pc”Macromedia Director PC pronom
application/x-doomapplication/x-doom tika
application/x-dtbncx+xmlapplication/x-dtbncx+xml tika
DTB (Digital Talking Book), 2005 fdd
application/x-dtbook+xmlapplication/x-dtbook+xml tika
DTB (Digital Talking Book), 2005 fdd
application/x-dtbresource+xmlapplication/x-dtbresource+xml tika
application/x-dviDVI (Device Independent File Format) ffw
TeX Device Independent Document tika
TeX Binary File pronom
TeX/LaTeX Device Independent Document pronom
application/x-dwgDWG ffw
AutoCad Drawing tika
application/x-elcEmacs Lisp bytecode tika
application/x-elfapplication/x-elf tika
—  application/x-coredumpapplication/x-coredump tika
—  application/x-executableapplication/x-executable tika
—  application/x-objectapplication/x-object tika
—  application/x-sharedlibapplication/x-sharedlib tika
application/x-emfExtended Metafile tika
application/x-endnote-connectEndNote Connection File pronom
application/x-endnote-connectionEndNote Connection File pronom
application/x-endnote-referEndNote Import File pronom
application/x-endnote-styleEndNote Style File pronom
application/x-erbHTML+ERB githublinguist
application/x-filemakerFileMaker Pro 7 tika
—  application/x-filemaker; version=”3″FileMaker Pro Database 3 pronom
application/x-font-adobe-metricAdobe Font Metric tika
application/x-font-bdfapplication/x-font-bdf tika
application/x-font-dosapplication/x-font-dos tika
application/x-font-framemakerapplication/x-font-framemaker tika
application/x-font-ghostscriptapplication/x-font-ghostscript tika
application/x-font-libgrxapplication/x-font-libgrx tika
application/x-font-linux-psfapplication/x-font-linux-psf tika
application/x-font-otfOpenType Font tika
application/x-font-pcfapplication/x-font-pcf tika
application/x-font-printer-metricPrinter Font Metric tika
application/x-font-snfapplication/x-font-snf tika
application/x-font-speedoapplication/x-font-speedo tika
application/x-font-sunos-newsapplication/x-font-sunos-news tika
application/x-font-ttfTrueType Font tika
application/x-font-type1application/x-font-type1 tika
application/x-font-vfontapplication/x-font-vfont tika
application/x-foxmailFoxmail Email File tika
application/x-frameFrameMaker Interchange Format tika
application/x-freemindMm ffw
application/x-futuresplashMacromedia FutureSplash File tika
application/x-gca-compressedGCA ffw
application/x-glulxGlulx ffw
application/x-gnucashapplication/x-gnucash tika
application/x-gnumericGnumeric ffw
application/x-gnumeric tika
application/x-gnumeric-spreadsheetapplication/x-gnumeric tika
application/x-gribGeneral Regularly-distributed Information in Binary form tika
application/x-gunzipGzip Compressed Archive tika
application/x-gzipGzip ffw
Unity package file ffw
Gzip Compressed Archive tika
GZIP Format pronom
—  application/x-ms-wmzapplication/x-ms-wmz tika
application/x-gzip-compressedGzip Compressed Archive tika
application/x-hdfHDF ffw
HDF4 ffw
Hierarchical Data Format File tika
HDF4, Hierarchical Data Format, Version 4 and earlier fdd
application/x-httpd-phpHTML+PHP githublinguist
PHP githublinguist
Hack githublinguist
application/x-hwpHangul Word Processor File tika
application/x-internet-archive; version=”1.0″Internet Archive 1.0 pronom
application/x-isatabISA-Tab Study file tika
application/x-isatab-assayISA-Tab Assay file tika
application/x-isatab-investigationISA-Tab Investigation file tika
application/x-iso9660-imageISO image ffw
ISO 9660 ffw
ISO 9660 CD-ROM filesystem data tika
ISO Disk Image File Format fdd
—  application/x-roxio-toastTOAST ffw
application/x-roxio-toast tika
application/x-javaJava Class File tika
application/x-java-jnilibJava Native Library for OSX tika
application/x-java-jnlp-fileJava Network Launching Protocol ffw
application/x-java-jnlp-file tika
application/x-java-pack200application/x-java-pack200 tika
application/x-java-vmJava Class File tika
application/x-jpgJFIF, JPEG File Interchange Format, Version 1.02 fdd
application/x-jspGroovy Server Pages githublinguist
Java Server Pages githublinguist
application/x-kchartKChart File tika
application/x-kdelnkapplication/x-kdelnk tika
application/x-killustratorKIllustrator File tika
application/x-koanSSEYO Koan File tika
application/x-kpresenterKPresenter File tika
application/x-kritaKrita ffw
Krita Document Format pronom
application/x-kspreadKSpread File tika
application/x-kwordKWord File tika
application/x-lhaapplication/x-lha tika
application/x-lharcapplication/x-lharc tika
application/x-lotus-notesNotes Storage Facility ffw
Lotus Notes Storage Facility fdd
application/x-lzh-compressedLHA ffw
application/x-lzipLzip ffw
application/x-lzmaLZMA Alone ffw
application/x-macbinaryMacBinary ffw
application/x-maffMAFF ffw
application/x-matlab-dataMAT ffw
Matlab figure ffw
application/x-matlab-data tika
MAT-File Level 5 File Format fdd
application/x-matroskaMatroska Media Container tika
—  audio/x-matroskaaudio/x-matroska tika
—  video/webmWebM ffw
video/webm tika
WebM pronom
WebM fdd
—  video/x-matroskaMKV ffw
video/x-matroska tika
application/x-midiMIDI ffw
Standard MIDI File Format fdd
application/x-mifFrameMaker Interchange Format tika
application/x-mobipocket-ebookapplication/x-mobipocket-ebook tika
Mobipocket File Format fdd
application/x-mplayer2ASF (Advanced Systems Format) fdd
application/x-ms-applicationapplication/x-ms-application tika
application/x-ms-wimWindows Imaging Format ffw
application/x-ms-wmdapplication/x-ms-wmd tika
application/x-ms-xbapapplication/x-ms-xbap tika
application/x-msaccessapplication/x-msaccess tika
application/x-msbinderapplication/x-msbinder tika
application/x-mscardfileapplication/x-mscardfile tika
application/x-msclipapplication/x-msclip tika
application/x-msdownloadapplication/x-msdownload tika
—  application/x-dosexecDOS/Windows executable (EXE) tika
—  application/x-msdownload;format=peapplication/x-msdownload;format=pe tika
— —  application/x-msdownload;format=pe-arm7application/x-msdownload;format=pe-arm7 tika
— —  application/x-msdownload;format=pe-armleapplication/x-msdownload;format=pe-armLE tika
— —  application/x-msdownload;format=pe-itaniumapplication/x-msdownload;format=pe-itanium tika
— —  application/x-msdownload;format=pe32application/x-msdownload;format=pe32 tika
— —  application/x-msdownload;format=pe64application/x-msdownload;format=pe64 tika
application/x-msmediaviewapplication/x-msmediaview tika
application/x-msmetafileWindows Metafile tika
application/x-msmoneyapplication/x-msmoney tika
application/x-msoActiveMime ffw
application/x-mspublisherapplication/x-mspublisher tika
application/x-msscheduleapplication/x-msschedule tika
application/x-msterminalapplication/x-msterminal tika
application/x-mswriteapplication/x-mswrite tika
application/x-mysql-dbapplication/x-mysql-db tika
—  application/x-mysql-misam-compressed-indexMySQL MISAM Compressed Index tika
—  application/x-mysql-misam-dataMySQL MISAM Data tika
—  application/x-mysql-misam-indexMySQL MISAM Index tika
—  application/x-mysql-table-definitionMySQL Table Definition (Format) tika
application/x-navi-animationWindows Animated Cursor ffw
application/x-netcdfapplication/x-netcdf tika
netCDF-3 Classic pronom
netCDF-3 64-bit pronom
NetCDF-3 (Network Common Data Form, version 3) fdd
application/x-ofx; version=”1.02″Open Financial Exchange 1.02 pronom
application/x-ofx; version=”1.03″Open Financial Exchange 1.03 pronom
application/x-ofx; version=”1.6″Open Financial Exchange 1.6 pronom
application/x-ofx; version=”2.0.3″Open Financial Exchange 2.0.3 pronom
application/x-ofx; version=”2.1.1″Open Financial Exchange 2.1.1 pronom
application/x-pdfPortable Document Format tika
PDF (Portable Document Format) Family fdd
application/x-pkcs12application/x-pkcs12 tika
application/x-pkcs7-certificatesapplication/x-pkcs7-certificates tika
application/x-pkcs7-certreqrespapplication/x-pkcs7-certreqresp tika
application/x-pn-mpgMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
application/x-powershellPowerShell githublinguist
application/x-prtapplication/x-prt tika
application/x-rarRAR archive tika
application/x-rar-compressedRAR ffw
RAR archive tika
RAR Archive File Format Family fdd
application/x-riffMIDI Instrument Definition File ffw
application/x-rpmRedHat Package Manager tika
application/x-sas-accessSAS Access Descriptor tika
application/x-sas-auditSAS Audit tika
application/x-sas-backupSAS Backup tika
application/x-sas-catalogSAS Catalog tika
application/x-sas-dataSAS Data Set tika
application/x-sas-data-indexSAS Data Set Index tika
application/x-sas-dmdbSAS DMDB Data Mining Database File tika
application/x-sas-fdbSAS FDB Consolidation Database File tika
application/x-sas-itemstorSAS Item Store (ItemStor) File tika
application/x-sas-mddbSAS MDDB Multi-Dimensional Database File tika
application/x-sas-program-dataSAS Stored Program (DATA Step) tika
application/x-sas-putilitySAS Permanent Utility tika
application/x-sas-transportSAS Transport File tika
application/x-sas-utilitySAS Utility tika
application/x-sas-viewSAS Data Set View tika
application/x-sas-xportSAS Transport File Format (XPORT) Family fdd
application/x-scapplication/x-sc tika
application/x-sharapplication/x-shar tika
Shell Archive Format pronom
application/x-shockwave-flashSWF ffw
Adobe Flash tika
Macromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
—  application/x-shockwave-flash; version=”1″Macromedia Flash 1 pronom
—  application/x-shockwave-flash; version=”10″Adobe Flash 10 pronom
—  application/x-shockwave-flash; version=”11″Adobe Flash 11 pronom
—  application/x-shockwave-flash; version=”12″Adobe Flash 12 pronom
—  application/x-shockwave-flash; version=”13″Adobe Flash 13 pronom
—  application/x-shockwave-flash; version=”14″Adobe Flash 14 pronom
—  application/x-shockwave-flash; version=”15″Adobe Flash 15 pronom
—  application/x-shockwave-flash; version=”16″Adobe Flash 16 pronom
—  application/x-shockwave-flash; version=”17″Adobe Flash 17 pronom
—  application/x-shockwave-flash; version=”18″Adobe Flash 18 pronom
—  application/x-shockwave-flash; version=”19″Adobe Flash 19 pronom
—  application/x-shockwave-flash; version=”2″Macromedia Flash 2 pronom
—  application/x-shockwave-flash; version=”20″Adobe Flash 20 pronom
—  application/x-shockwave-flash; version=”21″Adobe Flash 21 pronom
—  application/x-shockwave-flash; version=”22″Adobe Flash 22 pronom
—  application/x-shockwave-flash; version=”23″Adobe Flash 23 pronom
—  application/x-shockwave-flash; version=”24″Adobe Flash 24 pronom
—  application/x-shockwave-flash; version=”25″Adobe Flash 25 pronom
—  application/x-shockwave-flash; version=”26″Adobe Flash 26 pronom
—  application/x-shockwave-flash; version=”27″Adobe Flash 27 pronom
—  application/x-shockwave-flash; version=”28″Adobe Flash 28 pronom
—  application/x-shockwave-flash; version=”29″Adobe Flash 29 pronom
—  application/x-shockwave-flash; version=”3″Macromedia Flash 3 pronom
—  application/x-shockwave-flash; version=”30″Adobe Flash 30 pronom
—  application/x-shockwave-flash; version=”4″Macromedia Flash 4 pronom
—  application/x-shockwave-flash; version=”5″Macromedia Flash 5 pronom
—  application/x-shockwave-flash; version=”6″Macromedia Flash 6 pronom
—  application/x-shockwave-flash; version=”7″Macromedia Flash 7 pronom
—  application/x-shockwave-flash; version=”8″Adobe Flash 8 pronom
—  application/x-shockwave-flash; version=”9″Adobe Flash 9 pronom
application/x-silverlight-appSilverlight ffw
application/x-silverlight-app tika
application/x-sitStuffIt ffw
application/x-sitxStuffIt X ffw
application/x-sldAutoCAD Slide pronom
application/x-snappy-framedSnappy ffw
Snappy Framed tika
application/x-spss-porSPSS Portable File, ASCII encoding fdd
application/x-spss-savSAV ffw
SPSS System Data File Format Family (.sav) fdd
application/x-sqlite3SQLite ffw
application/x-sqlite3 tika
SQLite Database File Format pronom
application/x-starcalcSDC ffw
application/x-stardrawSDA (StarOffice) ffw
application/x-starwriterSDW ffw
application/x-stuffitStuffIt ffw
application/x-stuffit tika
application/x-stuffitxStuffIt X ffw
application/x-stuffitx tika
application/x-sv4cpioapplication/x-sv4cpio tika
application/x-sv4crcapplication/x-sv4crc tika
application/x-t3vm-imageTADS 3 ffw
application/x-tadsTADS ffw
application/x-tarTape Archive ffw
application/x-tar tika
Tape Archive Format pronom
Tape Archive (tar) File Format Family fdd
—  application/x-gtarGNU tar Compressed File Archive (GNU Tape Archive) tika
Tape Archive (tar) File Format Family fdd
application/x-tex-tfmapplication/x-tex-tfm tika
application/x-texinfoapplication/x-texinfo tika
application/x-tifTIFF, Revision 6.0 fdd
application/x-tiffTIFF, Revision 6.0 fdd
application/x-tika-msofficeapplication/x-tika-msoffice tika
—  application/msexcelMicrosoft Excel Spreadsheet tika
—  application/mspowerpointMicrosoft Powerpoint Presentation tika
—  application/mswordDOC ffw
Microsoft Word ffw
Microsoft Word ffw
Microsoft Word ffw
Microsoft Word ffw
Microsoft Word for Macintosh ffw
Microsoft Word Document tika
Microsoft Office Word 97-2003 Binary File Format (.doc) fdd
— —  application/msword; version=”1.0″Microsoft Word for Windows Document 1.0 pronom
Microsoft Word for Macintosh Document 1.0 pronom
— —  application/msword; version=”2.0″Microsoft Word for Windows Document 2.0 pronom
— —  application/msword; version=”3.0″Microsoft Word for Macintosh Document 3.0 pronom
Microsoft Word for MS-DOS Document 3.0 pronom
— —  application/msword; version=”4.0″Microsoft Word for Macintosh Document 4.0 pronom
Microsoft Word for MS-DOS Document 4.0 pronom
— —  application/msword; version=”5.0″Microsoft Word for Macintosh Document 5.0 pronom
Microsoft Word for MS-DOS Document 5.0 pronom
— —  application/msword; version=”5.5″Microsoft Word for MS-DOS Document 5.5 pronom
— —  application/msword; version=”6.0-2003″Microsoft Word (Generic) 6.0-2003 pronom
— —  application/msword; version=”6.0/95″Microsoft Word Document 6.0/95 pronom
— —  application/msword; version=”97-2003″Microsoft Word Document 97-2003 pronom
Microsoft Word Document (Password Protected) 97-2003 pronom
Microsoft Word Document Template (Password Protected) 97-2003 pronom
—  application/sldworksSolidWorks CAD program tika
—  application/vnd.ms-excelXLS ffw
Microsoft Excel ffw
Microsoft Excel ffw
Microsoft Excel ffw
Microsoft Excel ffw
XLM ffw
Microsoft Excel Spreadsheet tika
Microsoft Office Excel 97-2003 Binary File Format (.xls, BIFF8) fdd
— —  application/vnd.ms-excel; version=”2″Microsoft Excel 2.x Worksheet (xls) 2 pronom
— —  application/vnd.ms-excel; version=”2.x”Microsoft Excel Chart 2.x pronom
Microsoft Excel Macro 2.x pronom
— —  application/vnd.ms-excel; version=”3″Microsoft Excel 3.0 Worksheet (xls) 3 pronom
— —  application/vnd.ms-excel; version=”3.0″Microsoft Excel Chart 3.0 pronom
Microsoft Excel Macro 3.0 pronom
— —  application/vnd.ms-excel; version=”4.0″Microsoft Excel Macro 4.0 pronom
— —  application/vnd.ms-excel; version=”4s”Microsoft Excel 4.0 Worksheet (xls) 4S pronom
— —  application/vnd.ms-excel; version=”4w”Microsoft Excel 4.0 Workbook (xls) 4W pronom
— —  application/vnd.ms-excel; version=”5/95″Microsoft Excel 5.0/95 Workbook (xls) 5/95 pronom
— —  application/vnd.ms-excel; version=”8″Microsoft Excel 97 Workbook (xls) 8 pronom
— —  application/vnd.ms-excel; version=”8x”Microsoft Excel 2000-2003 Workbook (xls) 8X pronom
— —  application/x-tika-msworks-spreadsheetapplication/x-tika-msworks-spreadsheet tika
—  application/vnd.ms-outlookPersonal Folder File ffw
Microsoft Outlook Message tika
Microsoft Outlook PST 97-2002 (ANSI) fdd
Microsoft Outlook Item (MSG) fdd
—  application/vnd.ms-powerpointPPT ffw
Microsoft PowerPoint ffw
Microsoft Powerpoint Presentation tika
Microsoft Office PowerPoint 97-2003 Binary File Format (.ppt) fdd
— —  application/vnd.ms-powerpoint; version=”4.0″Microsoft Powerpoint Presentation 4.0 pronom
— —  application/vnd.ms-powerpoint; version=”95″Microsoft Powerpoint Presentation 95 pronom
— —  application/vnd.ms-powerpoint; version=”97-2003″Microsoft Powerpoint Presentation Show 97-2003 pronom
Microsoft Powerpoint Presentation 97-2003 pronom
—  application/vnd.ms-projectapplication/vnd.ms-project tika
— —  application/vnd.ms-project; version=”2000-2003″Microsoft Project 2000-2003 pronom
— —  application/vnd.ms-project; version=”2007″Microsoft Project 2007 pronom
— —  application/vnd.ms-project; version=”2010″Microsoft Project 2010 pronom
— —  application/vnd.ms-project; version=”4.0″Microsoft Project 4.0 pronom
— —  application/vnd.ms-project; version=”95″Microsoft Project 95 pronom
— —  application/vnd.ms-project; version=”98″Microsoft Project 98 pronom
—  application/vnd.ms-visioMicrosoft Visio Diagram tika
—  application/vnd.ms-wordDOC ffw
Microsoft Word Document tika
—  application/vnd.ms-worksapplication/vnd.ms-works tika
—  application/vnd.visioVisio ffw
Microsoft Visio Diagram tika
Microsoft Visio (generic) pronom
Visio VSDX Drawing File Format fdd
Visio VSDX Drawing File Format fdd
— —  application/vnd.visio; version=”2000″Microsoft Visio Drawing 2000 pronom
— —  application/vnd.visio; version=”2002″Microsoft Visio Drawing 2002 pronom
— —  application/vnd.visio; version=”2003-2010″Microsoft Visio XML Drawing 2003-2010 pronom
Microsoft Visio Drawing 2003-2010 pronom
— —  application/vnd.visio; version=”5.0″Microsoft Visio Drawing 5.0 pronom
—  application/x-corelpresentationsapplication/x-corelpresentations tika
—  application/x-hwp-v5Hangul Word Processor File v5 tika
—  application/x-ms-installerMicrosoft Windows Installer tika
—  application/x-msiMicrosoft Windows Installer tika
—  application/x-quattro-proapplication/x-quattro-pro tika
—  application/x-tika-msoffice-embeddedapplication/x-tika-msoffice-embedded tika
— —  application/x-tika-msoffice-embedded;format=comp_objCompObj OLE2 Embedded Document tika
— —  application/x-tika-msoffice-embedded;format=ole10_nativeOLE10 Native Embedded Document tika
—  application/x-tika-starofficeapplication/x-tika-staroffice tika
— —  application/vnd.stardivision.calcSDC ffw
StarOffice binary formats ffw
application/vnd.stardivision.calc tika
— —  application/vnd.stardivision.drawStarOffice binary formats ffw
SDA (StarOffice) ffw
application/vnd.stardivision.draw tika
— — —  application/vnd.stardivision.draw; version=”5.x”StarOffice Draw 5.x pronom
— —  application/vnd.stardivision.impressStarOffice binary formats ffw
application/vnd.stardivision.impress tika
— —  application/vnd.stardivision.writerSDW ffw
StarOffice binary formats ffw
application/vnd.stardivision.writer tika
— — —  application/vnd.stardivision.writer; version=”5.x”StarOffice Writer 5.x pronom
— —  application/x-staroffice-templateapplication/x-staroffice-template tika
—  application/x-windows-installerMicrosoft Windows Installer tika
application/x-tika-old-excelPre-OLE2 (Old) Microsoft Excel Worksheets tika
—  application/vnd.ms-excel.sheet.2Microsoft Excel 2 Worksheet tika
—  application/vnd.ms-excel.sheet.3Microsoft Excel 3 Worksheet tika
—  application/vnd.ms-excel.sheet.4Microsoft Excel 4 Worksheet tika
—  application/vnd.ms-excel.workspace.3Microsoft Excel 3 Workspace tika
—  application/vnd.ms-excel.workspace.4Microsoft Excel 4 Workspace tika
application/x-tika-unix-dumpapplication/x-tika-unix-dump tika
application/x-troffRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-manRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-meRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-msRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
application/x-troff-msvideoAVI (Audio Video Interleaved) File Format fdd
application/x-uc2-compressedapplication/x-uc2-compressed tika
application/x-unix-archiveapplication/x-archive tika
application/x-urlInternet Shortcut ffw
application/x-ustarapplication/x-ustar tika
application/x-vhdVirtual PC Virtual Hard Disk tika
application/x-vmdkVirtual Disk Format tika
application/x-vnd.corel.designer.document+zipCorel Designer ffw
application/x-vnd.corel.zcf.designer.document+zipCorel Designer ffw
application/x-vnd.oasis.opendocument.chartOpenDocument v1.0: Chart document tika
application/x-vnd.oasis.opendocument.chart-templateOpenDocument v1.0: Chart document used as template tika
application/x-vnd.oasis.opendocument.formula-templateOpenDocument v1.0: Formula document used as template tika
application/x-vnd.oasis.opendocument.graphicsOpenDocument v1.0: Graphics document (Drawing) tika
application/x-vnd.oasis.opendocument.graphics-templateOpenDocument v1.0: Graphics document used as template tika
application/x-vnd.oasis.opendocument.imageOpenDocument v1.0: Image document tika
application/x-vnd.oasis.opendocument.image-templateOpenDocument v1.0: Image document used as template tika
application/x-vnd.oasis.opendocument.presentationOpenDocument v1.0: Presentation document tika
application/x-vnd.oasis.opendocument.presentation-templateOpenDocument v1.0: Presentation document used as template tika
application/x-vnd.oasis.opendocument.spreadsheetOpenDocument v1.0: Spreadsheet document tika
application/x-vnd.oasis.opendocument.spreadsheet-templateOpenDocument v1.0: Spreadsheet document used as template tika
application/x-vnd.oasis.opendocument.textOpenDocument v1.0: Text document tika
application/x-vnd.oasis.opendocument.text-masterOpenDocument v1.0: Global Text document tika
application/x-vnd.oasis.opendocument.text-templateOpenDocument v1.0: Text document used as template tika
application/x-vnd.oasis.opendocument.text-webOpenDocument v1.0: Text document used as template for HTML documents tika
application/x-vnd.sun.xml.writerOpenOffice v1.0: Writer Document tika
application/x-votable+xmlVOTable ffw
application/x-wais-sourceapplication/x-wais-source tika
application/x-web-app-manifest+jsonOpen Web App Manifest ffw
application/x-www-form-urlencodedForm URL encoding ffw
application/x-x509-ca-certDER encoded certificate ffw
application/x-x509-ca-cert tika
application/x-x509-user-certDER encoded certificate ffw
application/x-xfigapplication/x-xfig tika
application/x-xpinstallCross-Platform Installer Module ffw
application/x-xpinstall tika
application/x-xzXZ ffw
application/x-xz tika
application/x-zip-compressedCompressed Archive File tika
application/x-zooZoo ffw
application/x-zoo tika
application/x400-bpapplication/x400-bp tika
application/xcap-att+xmlapplication/xcap-att+xml tika
application/xcap-caps+xmlapplication/xcap-caps+xml tika
application/xcap-el+xmlapplication/xcap-el+xml tika
application/xcap-error+xmlapplication/xcap-error+xml tika
application/xcap-ns+xmlapplication/xcap-ns+xml tika
application/xcon-conference-info+xmlapplication/xcon-conference-info+xml tika
application/xcon-conference-info-diff+xmlapplication/xcon-conference-info-diff+xml tika
application/xenc+xmlapplication/xenc+xml tika
application/xhtml+xmlHTML ffw
application/xhtml+xml tika
HyperText Markup Language (HTML) 5 fdd
Extensible HyperText Markup Language (XHTML), 1.0 fdd
—  application/xhtml+xml; version=”1.0″Extensible Hypertext Markup Language 1.0 pronom
—  application/xhtml+xml; version=”1.1″Extensible Hypertext Markup Language 1.1 pronom
application/xhtml-voice+xmlapplication/xhtml-voice+xml tika
application/xml-external-parsed-entityapplication/xml-external-parsed-entity tika
application/xmpp+xmlapplication/xmpp+xml tika
application/xop+xmlapplication/xop+xml tika
application/xslfo+xmlXSL Format tika
application/xslt+xmlXSL Transformations tika
application/xspf+xmlXML Shareable Playlist Format tika
application/xv+xmlapplication/xv+xml tika
application/zipZIP ffw
Compressed Archive File tika
ZIP Format pronom
ZIP File Format (PKWARE) fdd
ZIP File Format, Version 6.3.3 (PKWARE) fdd
Document Container File: Core (based on ZIP 6.3.3) fdd
ZIP File Format, Version 6.2.0 (PKWARE) fdd
—  application/bizagi-modelerBizAgi Process Modeler tika
—  application/java-archiveJava Archive tika
Java Archive Format pronom
— —  application/vnd.android.package-archiveapplication/vnd.android.package-archive tika
— —  application/x-tika-java-enterprise-archiveapplication/x-tika-java-enterprise-archive tika
— —  application/x-tika-java-web-archiveapplication/x-tika-java-web-archive tika
—  application/vnd.apple.iworkapplication/vnd.apple.iwork tika
— —  application/vnd.apple.keynoteapplication/vnd.apple.keynote tika
— —  application/vnd.apple.numbersapplication/vnd.apple.numbers tika
— —  application/vnd.apple.pagesapplication/vnd.apple.pages tika
— —  application/x-tika-iworks-protectedPassword Protected iWorks File tika
—  application/vnd.etsi.asic-e+zipExtended Associated Signature Container tika
—  application/vnd.etsi.asic-s+zipSimple Associated Signature Container tika
—  application/vnd.google-earth.kmzKML ffw
application/vnd.google-earth.kmz tika
Keyhole Markup Language (Container) pronom
—  application/vnd.mindjet.mindmanagerMindManager tika
—  application/vnd.oasis.opendocument.formulaOpenDocument ffw
OpenDocument v1.0: Formula document tika
—  application/x-itunes-ipaApple iOS IPA AppStore file tika
—  application/x-tika-ooxmlapplication/x-tika-ooxml tika
— —  application/oxpsOpenXPS ffw
Open XML Paper Specification tika
Open XML Paper Specification pronom
Open XML Paper Specification, (OpenXPS), ECMA-388 (.oxps) fdd
— —  application/vnd.ms-excel.addin.macroenabled.12Microsoft Excel ffw
Office Open XML Workbook Add-in (macro-enabled) tika
— —  application/vnd.ms-excel.sheet.binary.macroenabled.12Microsoft Excel ffw
Microsoft Excel 2007 Binary Spreadsheet tika
Microsoft Excel Binary (XLSB) Format (option in Excel 2007 and later) fdd
— —  application/vnd.ms-excel.sheet.macroenabled.12Microsoft Excel ffw
Office Open XML Workbook (macro-enabled) tika
— —  application/vnd.ms-excel.template.macroenabled.12Microsoft Excel ffw
Office Open XML Workbook Template (macro-enabled) tika
— —  application/vnd.ms-powerpoint.addin.macroenabled.12Microsoft PowerPoint ffw
Office Open XML Presentation Add-in (macro-enabled) tika
— —  application/vnd.ms-powerpoint.presentation.macroenabled.12Microsoft PowerPoint ffw
Office Open XML Presentation (macro-enabled) tika
— —  application/vnd.ms-powerpoint.slide.macroenabled.12Microsoft PowerPoint ffw
application/vnd.ms-powerpoint.slide.macroenabled.12 tika
— —  application/vnd.ms-powerpoint.slideshow.macroenabled.12Microsoft PowerPoint ffw
Office Open XML Presentation Slideshow (macro-enabled) tika
— —  application/vnd.ms-powerpoint.template.macroenabled.12Microsoft PowerPoint ffw
application/vnd.ms-powerpoint.template.macroenabled.12 tika
— —  application/vnd.ms-word.document.macroenabled.12Microsoft Word ffw
Office Open XML Document (macro-enabled) tika
— —  application/vnd.ms-word.template.macroenabled.12Microsoft Word ffw
Office Open XML Document Template (macro-enabled) tika
— —  application/vnd.ms-xpsdocumentOpenXPS ffw
Open XML Paper Specification tika
Microsoft XML Paper Specification, (XPS) fdd
— —  application/vnd.openxmlformats-officedocument.presentationml.presentationPPTX ffw
Microsoft PowerPoint ffw
Office Open XML Presentation tika
PPTX Strict (Office Open XML), ISO 29500-1: 2008-2016 fdd
PPTX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
— — —  application/vnd.openxmlformats-officedocument.presentationml.presentation; version=”2007 onwards”Microsoft Powerpoint for Windows 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.presentationml.slideapplication/vnd.openxmlformats-officedocument.presentationml.slide tika
— —  application/vnd.openxmlformats-officedocument.presentationml.slideshowMicrosoft PowerPoint ffw
Office Open XML Presentation Slideshow tika
PPTX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
— — —  application/vnd.openxmlformats-officedocument.presentationml.slideshow; version=”2007″Microsoft PowerPoint Show 2007 pronom
— —  application/vnd.openxmlformats-officedocument.presentationml.templateMicrosoft PowerPoint ffw
Office Open XML Presentation Template tika
— — —  application/vnd.openxmlformats-officedocument.presentationml.template; version=”2007″Microsoft PowerPoint Template 2007 pronom
— —  application/vnd.openxmlformats-officedocument.spreadsheetml.sheetXLSX ffw
Microsoft Excel ffw
Office Open XML Workbook tika
XLSX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
XLSX Strict (Office Open XML), ISO 29500-1:2008-2016 fdd
— — —  application/vnd.openxmlformats-officedocument.spreadsheetml.sheet; version=”2007 onwards”Microsoft Excel for Windows 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.spreadsheetml.templateMicrosoft Excel ffw
Office Open XML Workbook Template tika
— — —  application/vnd.openxmlformats-officedocument.spreadsheetml.template; version=”2007 onwards”Microsoft Excel Template 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.wordprocessingml.documentDOCX ffw
Microsoft Word ffw
Office Open XML Document tika
OOXML Format Family — ISO/IEC 29500 and ECMA 376 fdd
DOCX Transitional (Office Open XML), ISO 29500:2008-2016, ECMA-376, Editions 1-5 fdd
DOCX Strict (Office Open XML), ISO 29500-1: 2008-2016 fdd
— — —  application/vnd.openxmlformats-officedocument.wordprocessingml.document; version=”2007 onwards”Microsoft Word for Windows 2007 onwards pronom
— —  application/vnd.openxmlformats-officedocument.wordprocessingml.templateMicrosoft Word ffw
Office Open XML Document Template tika
— — —  application/vnd.openxmlformats-officedocument.wordprocessingml.template; version=”2007 onwards”Microsoft Word Template 2007 onwards pronom
— —  application/x-tika-ooxml-protectedPassword Protected OOXML File tika
— —  application/x-tika-visio-ooxmlVisio OOXML File tika
— — —  application/vnd.ms-visio.drawingOffice Open XML Visio Drawing (macro-free) tika
Visio VSDX Drawing File Format fdd
Visio VSDX Drawing File Format fdd
— — —  application/vnd.ms-visio.drawing.macroenabled.12Office Open XML Visio Drawing (macro-enabled) tika
— — —  application/vnd.ms-visio.stencilOffice Open XML Visio Stencil (macro-free) tika
— — —  application/vnd.ms-visio.stencil.macroenabled.12Office Open XML Visio Stencil (macro-enabled) tika
— — —  application/vnd.ms-visio.templateOffice Open XML Visio Template (macro-free) tika
— — —  application/vnd.ms-visio.template.macroenabled.12Office Open XML Visio Template (macro-enabled) tika
— —  model/vnd.dwfx+xpsAutoCAD Design Web Format tika
—  application/x-vnd.oasis.opendocument.formulaOpenDocument v1.0: Formula document tika
—  application/x-xmindXMind Pro tika
application/zlibZLIB Compressed Data Format tika
application/zstdZstandard ffw
audio/32kadpcmaudio/32kadpcm tika
audio/3gpp3GP ffw
audio/3gpp tika
3GPP Audio/Video File pronom
AMR, Adaptive Multi-Rate Speech Codec fdd
audio/3gpp23G2 ffw
audio/3gpp2 tika
audio/8svx8-Bit Sampled Voice ffw
audio/ac3audio/ac3 tika
Dolby Digital AC-3 pronom
AC-3 Compressed Audio (Dolby Digital), Revision A fdd
audio/adpcmaudio/adpcm tika
audio/aiffAIFF ffw
Audio Interchange File Format tika
AIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
audio/amrAdaptive Multi-Rate Audio ffw
audio/amr tika
Adaptive Multi-Rate Audio pronom
AMR, Adaptive Multi-Rate Speech Codec fdd
—  audio/amr-wbaudio/amr-wb tika
Adaptive Multi-Rate Wideband Audio pronom
AMR-WB, Adaptive Multi-Rate – Wideband Speech Codec fdd
—  audio/amr-wb+audio/amr-wb+ tika
AMR-WB+, Extended Adaptive Multi-Rate – Wideband Speech Codec fdd
audio/application/x-pn-realmediaRealMedia ffw
audio/ascaudio/asc tika
audio/asfASF (Advanced Systems Format) fdd
audio/audibleAudible.Com File Format fdd
audio/aviAVI (Audio Video Interleaved) File Format fdd
audio/basicAU ffw
uLaw/AU Audio File tika
NeXT/Sun sound pronom
audio/bv16audio/bv16 tika
audio/bv32audio/bv32 tika
audio/clearmodeaudio/clearmode tika
audio/cnaudio/cn tika
audio/dat12audio/dat12 tika
audio/dlsaudio/dls tika
Downloadable Sounds Audio pronom
audio/dsr-es201108audio/dsr-es201108 tika
audio/dsr-es202050audio/dsr-es202050 tika
audio/dsr-es202211audio/dsr-es202211 tika
audio/dsr-es202212audio/dsr-es202212 tika
audio/dvi4audio/dvi4 tika
audio/eac3audio/eac3 tika
audio/evrcaudio/evrc tika
audio/evrc-qcpaudio/evrc-qcp tika
audio/evrc0audio/evrc0 tika
audio/evrc1audio/evrc1 tika
audio/evrcbaudio/evrcb tika
audio/evrcb0audio/evrcb0 tika
audio/evrcb1audio/evrcb1 tika
audio/evrcwbaudio/evrcwb tika
audio/evrcwb0audio/evrcwb0 tika
audio/evrcwb1audio/evrcwb1 tika
audio/exampleaudio/example tika
audio/flacFLAC ffw
FLAC (Free Lossless Audio Codec), Version 1.1.2 fdd
audio/g719audio/g719 tika
audio/g722audio/g722 tika
audio/g7221audio/g7221 tika
audio/g723audio/g723 tika
audio/g726-16audio/g726-16 tika
audio/g726-24audio/g726-24 tika
audio/g726-32audio/g726-32 tika
audio/g726-40audio/g726-40 tika
audio/g728audio/g728 tika
audio/g729audio/g729 tika
audio/g7291audio/g7291 tika
audio/g729daudio/g729d tika
audio/g729eaudio/g729e tika
audio/gsmaudio/gsm tika
audio/gsm-efraudio/gsm-efr tika
audio/ilbcaudio/ilbc tika
audio/itModule Music Formats (Mods) fdd
audio/l16audio/l16 tika
audio/l20audio/l20 tika
audio/l24audio/l24 tika
audio/l8audio/l8 tika
audio/lpcaudio/lpc tika
audio/mMIDI ffw
audio/mStandard MIDI File Format fdd
audio/medModule Music Formats (Mods) fdd
audio/midMIDI ffw
Standard MIDI File Format fdd
RIFF-based MIDI File Format fdd
audio/midiMIDI ffw
Musical Instrument Digital Interface tika
MIDI Audio pronom
audio/midiStandard MIDI File Format fdd
audio/mobile-xmfaudio/mobile-xmf tika
Mobile eXtensible Music Format pronom
XMF, eXtensible Music File Format, Version 1.0 fdd
audio/modModule Music Formats (Mods) fdd
audio/mp3MP3 File Format fdd
audio/mp4MP4 ffw
audio/mp4 tika
MPEG-4 File Format, Version 2 fdd
audio/mp4a-latmaudio/mp4a-latm tika
audio/mpaMPEG Audio Layer I ffw
MPEG Audio Layer II ffw
audio/mpa tika
MPEG-1 and MPEG-2 Layer II Audio Encoding fdd
audio/mpa-robustaudio/mpa-robust tika
audio/mpegMP3 ffw
MPEG-1 ffw
MPEG Audio Layer I ffw
MPEG Audio Layer II ffw
MPEG-1 Audio Layer 3 tika
MPEG 1/2 Audio Layer 3 Streaming pronom
MPEG 1/2 Audio Layer 3 pronom
MPEG Audio Stream, Layer II pronom
MPEG 1/2 Audio Layer I pronom
DTB (Digital Talking Book), 2005 fdd
MPEG-1 and MPEG-2 Layer II Audio Encoding fdd
MP3 File Format fdd
audio/mpeg3MP3 File Format fdd
audio/mpeg4-genericaudio/mpeg4-generic tika
DTB (Digital Talking Book), 2005 fdd
audio/mpgMP3 File Format fdd
audio/ogg; codecs=speexSpeex Audio Codec, Version 1.2 fdd
Ogg Speex Audio Format fdd
audio/parityfecaudio/parityfec tika
audio/pcmaaudio/pcma tika
audio/pcma-wbaudio/pcma-wb tika
audio/pcmuaudio/pcmu tika
audio/pcmu-wbaudio/pcmu-wb tika
audio/prs.sidSID ffw
audio/prs.sid tika
Real SID Audio pronom
—  audio/prs.sid; version=”1″Play SID Audio 1 pronom
—  audio/prs.sid; version=”2″Play SID Audio 2 pronom
audio/qcelpaudio/qcelp tika
QCP Audio File Format pronom
audio/redaudio/red tika
audio/rtp-enc-aescm128audio/rtp-enc-aescm128 tika
audio/rtp-midiaudio/rtp-midi tika
audio/rtxaudio/rtx tika
audio/s3mModule Music Formats (Mods) fdd
audio/smvaudio/smv tika
audio/smv-qcpaudio/smv-qcp tika
audio/smv0audio/smv0 tika
audio/sp-midiaudio/sp-midi tika
audio/t140caudio/t140c tika
audio/t38audio/t38 tika
audio/telephone-eventaudio/telephone-event tika
audio/toneaudio/tone tika
audio/tta; version=”1″True Audio 1 pronom
audio/tta; version=”2″True Audio 2 pronom
audio/ulpfecaudio/ulpfec tika
audio/vdviaudio/vdvi tika
audio/vmr-wbaudio/vmr-wb tika
audio/vnd.3gpp.iufpaudio/vnd.3gpp.iufp tika
audio/vnd.4sbaudio/vnd.4sb tika
audio/vnd.adobe.soundboothaudio/vnd.adobe.soundbooth tika
audio/vnd.audiokozaudio/vnd.audiokoz tika
audio/vnd.celpaudio/vnd.celp tika
audio/vnd.cisco.nseaudio/vnd.cisco.nse tika
audio/vnd.cmles.radio-eventsaudio/vnd.cmles.radio-events tika
audio/vnd.cns.anp1audio/vnd.cns.anp1 tika
audio/vnd.cns.inf1audio/vnd.cns.inf1 tika
audio/vnd.digital-windsaudio/vnd.digital-winds tika
audio/vnd.dlna.adtsaudio/vnd.dlna.adts tika
audio/vnd.dolby.heaac.1audio/vnd.dolby.heaac.1 tika
audio/vnd.dolby.heaac.2audio/vnd.dolby.heaac.2 tika
audio/vnd.dolby.mlpaudio/vnd.dolby.mlp tika
Dolby MLP Lossless Audio pronom
audio/vnd.dolby.mpsaudio/vnd.dolby.mps tika
audio/vnd.dolby.pl2audio/vnd.dolby.pl2 tika
audio/vnd.dolby.pl2xaudio/vnd.dolby.pl2x tika
audio/vnd.dolby.pl2zaudio/vnd.dolby.pl2z tika
audio/vnd.dtsaudio/vnd.dts tika
DTS Coherent Acoustics (DCA) Audio pronom
audio/vnd.dts.hdaudio/vnd.dts.hd tika
audio/vnd.everad.pljaudio/vnd.everad.plj tika
audio/vnd.hns.audioaudio/vnd.hns.audio tika
audio/vnd.lucent.voiceaudio/vnd.lucent.voice tika
audio/vnd.ms-playready.media.pyaaudio/vnd.ms-playready.media.pya tika
audio/vnd.nokia.mobile-xmfaudio/vnd.nokia.mobile-xmf tika
audio/vnd.nortel.vbkaudio/vnd.nortel.vbk tika
audio/vnd.nuera.ecelp4800audio/vnd.nuera.ecelp4800 tika
audio/vnd.nuera.ecelp7470audio/vnd.nuera.ecelp7470 tika
audio/vnd.nuera.ecelp9600audio/vnd.nuera.ecelp9600 tika
audio/vnd.octel.sbcaudio/vnd.octel.sbc tika
audio/vnd.qcelpaudio/vnd.qcelp tika
audio/vnd.rhetorex.32kadpcmaudio/vnd.rhetorex.32kadpcm tika
audio/vnd.rn-realaudioRealAudio ffw
RealAudio Metafile pronom
RealAudio, Version 10 fdd
—  audio/vnd.rn-realaudio; version=”3″RealAudio 3 pronom
audio/vnd.sealedmedia.softseal.mpegaudio/vnd.sealedmedia.softseal.mpeg tika
audio/vnd.vmx.cvsdaudio/vnd.vmx.cvsd tika
audio/vnd.waveWAV ffw
WAVE Audio File Format fdd
audio/vorbis-configaudio/vorbis-config tika
audio/wavWAV ffw
WAVE Audio File Format fdd
audio/waveWAV ffw
WAVE Audio File Format fdd
audio/webmWebM ffw
WebM fdd
audio/x-8svx8-Bit Sampled Voice ffw
audio/x-aacaudio/x-aac tika
audio/x-adbcmaudio/x-adbcm tika
audio/x-aiffAIFF ffw
Audio Interchange File Format tika
Audio Interchange File Format (compressed) pronom
AIFF (Audio Interchange File Format) fdd
AIFF File Format with LPCM Audio fdd
audio/x-amr-wbAdaptive Multi-Rate WideBand Audio ffw
audio/x-dec-adbcmaudio/x-dec-adbcm tika
audio/x-dec-basicaudio/x-dec-basic tika
audio/x-flacFLAC ffw
Free Lossless Audio Codec tika
audio/x-m4aaudio/mp4 tika
audio/x-matroskaMatroska Multimedia Container fdd
Matroska Multimedia Container fdd
audio/x-midiMIDI ffw
audio/x-midiStandard MIDI File Format fdd
audio/x-modEPSGMOD ffw
audio/x-mod tika
Module Music Formats (Mods) fdd
audio/x-mp3MP3 File Format fdd
audio/x-mp4aaudio/mp4 tika
audio/x-mpegMPEG-1 Audio Layer 3 tika
MP3 File Format fdd
audio/x-mpeg3MP3 File Format fdd
audio/x-mpegaudioMP3 File Format fdd
audio/x-mpegurlMP3 Playlist File tika
audio/x-mpgMP3 File Format fdd
audio/x-ms-waxWindows Media Metafile ffw
audio/x-ms-wax tika
audio/x-oggOgg File Format fdd
Ogg Vorbis Audio Format fdd
audio/x-pn-audibleaudioAudible.Com File Format fdd
audio/x-pn-realaudioRealAudio ffw
RAM (RealAudio) ffw
Real Audio tika
RealAudio Metafile pronom
audio/x-pn-realaudio-pluginRAM (RealAudio) ffw
RealMedia Player Plug-in tika
audio/x-pn-wavWAV ffw
WAVE Audio File Format fdd
audio/x-realaudioReal Audio tika
audio/x-s3mModule Music Formats (Mods) fdd
audio/x-speexSpeex Audio Codec, Version 1.2 fdd
Ogg Speex Audio Format fdd
audio/x-vocCreative Voice File ffw
audio/x-wavWAV ffw
BWF ffw
audio/x-wav tika
Waveform Audio pronom
Waveform Audio (PCMWAVEFORMAT) pronom
Waveform Audio (WAVEFORMATEX) pronom
Waveform Audio (WAVEFORMATEXTENSIBLE) pronom
WAVE Audio File Format fdd
DTB (Digital Talking Book), 2005 fdd
—  audio/x-wav; version=”0 generic”Broadcast WAVE 0 Generic pronom
—  audio/x-wav; version=”0 mpeg encoding”Broadcast WAVE 0 MPEG Encoding pronom
—  audio/x-wav; version=”0 pcm encoding”Broadcast WAVE 0 PCM Encoding pronom
—  audio/x-wav; version=”0 waveformatextensible encoding”Broadcast WAVE 0 WAVEFORMATEXTENSIBLE Encoding pronom
—  audio/x-wav; version=”1 generic”Broadcast WAVE 1 Generic pronom
—  audio/x-wav; version=”1 mpeg encoding”Broadcast WAVE 1 MPEG Encoding pronom
—  audio/x-wav; version=”1 pcm encoding”Broadcast WAVE 1 PCM Encoding pronom
—  audio/x-wav; version=”1 waveformatextensible encoding”Broadcast WAVE 1 WAVEFORMATEXTENSIBLE Encoding pronom
—  audio/x-wav; version=”2 generic”Broadcast WAVE 2 Generic pronom
—  audio/x-wav; version=”2 mpeg encoding”Broadcast WAVE 2 MPEG Encoding pronom
—  audio/x-wav; version=”2 pcm encoding”Broadcast WAVE 2 PCM Encoding pronom
—  audio/x-wav; version=”2 waveformatextensible encoding”Broadcast WAVE 2 WAVEFORMATEXTENSIBLE Encoding pronom
—  audio/x-wav; version=”2.0″Exchangeable Image File Format (Audio) 2.0 pronom
—  audio/x-wav; version=”2.1″Exchangeable Image File Format (Audio) 2.1 pronom
—  audio/x-wav; version=”2.2″Exchangeable Image File Format (Audio) 2.2 pronom
audio/x-xmModule Music Formats (Mods) fdd
audio/xmExtended Module Audio File pronom
Module Music Formats (Mods) fdd
chemical/x-cdxchemical/x-cdx tika
Chemical Draw Exchange Format pronom
chemical/x-cifCIF ffw
chemical/x-cif tika
chemical/x-cmdfchemical/x-cmdf tika
chemical/x-cmlCML ffw
chemical/x-cml tika
chemical/x-csmlchemical/x-csml tika
chemical/x-mdl-molfileMOL ffw
chemical/x-pdbBrookhaven Protein Databank File tika
chemical/x-xyzchemical/x-xyz tika
drawing/dwgDWG ffw
AutoCad Drawing tika
gzip/documentGzip Compressed Archive tika
image/ascii-artASCII Art ffw
image/aviAVI (Audio Video Interleaved) File Format fdd
image/avifAVIF ffw
image/avif-sequenceAVIF ffw
image/bmpBMP ffw
Windows bitmap tika
Bitmap Image File (BMP), Version 5 fdd
—  image/bmp; version=”1.0″Windows Bitmap 1.0 pronom
—  image/bmp; version=”2.0″OS/2 Bitmap 2.0 pronom
Windows Bitmap 2.0 pronom
—  image/bmp; version=”3.0 nt”Windows Bitmap 3.0 NT pronom
—  image/bmp; version=”3.0″Windows Bitmap 3.0 pronom
—  image/bmp; version=”4.0″Windows Bitmap 4.0 pronom
—  image/bmp; version=”5.0″Windows Bitmap 5.0 pronom
image/cgmCGM ffw
Computer Graphics Metafile tika
Computer Graphics Metafile (CGM) File Format Family fdd
—  image/cgm; version=”1″Computer Graphics Metafile ASCII 1 pronom
—  image/cgm; version=”3″Computer Graphics Metafile ASCII 3 pronom
—  image/cgm; version=”4″Computer Graphics Metafile ASCII 4 pronom
—  image/cgm; version=1; version=”1″Computer Graphics Metafile (Binary) 1 pronom
—  image/cgm; version=2; version=”2″Computer Graphics Metafile (Binary) 2 pronom
—  image/cgm; version=3; version=”3″Computer Graphics Metafile (Binary) 3 pronom
—  image/cgm; version=4; version=”4″Computer Graphics Metafile (Binary) 4 pronom
image/cis-codLightning Strike ffw
image/dicom-rleDICOM ffw
image/emfEnhanced Metafile ffw
—  image/emf; version=”1.0″Microsoft Windows Enhanced Metafile 1.0 pronom
—  image/emf; version=”2.0″Microsoft Windows Enhanced Metafile 2.0 pronom
—  image/emf; version=”3.0″Microsoft Windows Enhanced Metafile 3.0 pronom
image/exampleimage/example tika
image/flifFree Lossless Image Format (FLIF) pronom
image/g3faxCCITT Group 3 ffw
image/g3fax tika
image/gifGIF ffw
Graphics Interchange Format tika
GIF Graphics Interchange Format, Version 89a fdd
—  image/gif; version=”87a”Graphics Interchange Format 87a pronom
—  image/gif; version=”89a”Graphics Interchange Format 89a pronom
image/heicHEIF ffw
High Efficiency Image File Format, HEIC/HEIX brands fdd
High Efficiency Image File (HEIF) Format, MPEG-H Part 12 fdd
image/heic-sequenceHigh Efficiency Image File Format, HEIC/HEIX brands fdd
image/heifHEIF ffw
High Efficiency Image File (HEIF) Format, MPEG-H Part 12 fdd
image/iefImage Exchange Format ffw
image/ief tika
image/image/x-ptxPentax PEF ffw
image/ivgIconVG ffw
image/jlsJPEG-LS ffw
image/jpegJPEG ffw
JFIF ffw
SPIFF ffw
Joint Photographic Experts Group tika
Raw JPEG Stream pronom
JFIF, JPEG File Interchange Format, Version 1.02 fdd
SPIFF, Still Picture Interchange File Format fdd
—  image/jpeg; version=”1.0″Still Picture Interchange File Format 1.0 pronom
—  image/jpeg; version=”1.00″JPEG File Interchange Format 1.00 pronom
—  image/jpeg; version=”1.01″JPEG File Interchange Format 1.01 pronom
—  image/jpeg; version=”1.02″JPEG File Interchange Format 1.02 pronom
—  image/jpeg; version=”2.0″Still Picture Interchange File Format 2.0 pronom
Exchangeable Image File Format (Compressed) 2.0 pronom
—  image/jpeg; version=”2.1″Exchangeable Image File Format (Compressed) 2.1 pronom
—  image/jpeg; version=”2.2″Exchangeable Image File Format (Compressed) 2.2 pronom
—  image/jpeg; version=”2.2.1″Exchangeable Image File Format (Compressed) 2.2.1 pronom
image/jpeg2000JPEG 2000 Part 1 (Core) jp2 File Format fdd
image/jpeg2000-imageJPEG 2000 Part 1 (Core) jp2 File Format fdd
image/jpgJFIF, JPEG File Interchange Format, Version 1.02 fdd
image/jxlJPEG XL ffw
image/jxrJPEG Extended Range pronom
JPEG XR File Format (JXR) fdd
image/ktxKTX ffw
Khronos Texture File pronom
image/movQuickTime File Format fdd
image/naplpsNAPLPS ffw
image/naplps tika
image/niaNaïve Image Formats ffw
image/nieNaïve Image Formats ffw
image/niiNaïve Image Formats ffw
image/nitfimage/nitf tika
image/ntfimage/nitf tika
image/openrasterOpenRaster ffw
OpenRaster Image Format pronom
image/pictPICT ffw
image/pngPNG ffw
APNG ffw
Portable Network Graphics tika
PNG, Portable Network Graphics fdd
—  image/png; version=”1.0″Portable Network Graphics 1.0 pronom
—  image/png; version=”1.1″Portable Network Graphics 1.1 pronom
—  image/png; version=”1.2″Portable Network Graphics 1.2 pronom
image/png+jsonPiskel canvas ffw
image/prs.btifimage/prs.btif tika
image/prs.ptiimage/prs.pti tika
image/pwg-rasterPWG Raster ffw
image/svg-xmlScalable Vector Graphics (SVG) File Format Family fdd
Scalable Vector Graphics (SVG), Version 1.1 fdd
image/t38image/t38 tika
image/tifTIFF, Revision 6.0 fdd
image/tiffTIFF ffw
Tagged Image File Format tika
Tagged Image File Format for Image Technology (TIFF/IT) pronom
Tagged Image File Format for Electronic Photography (TIFF/EP) pronom
Geographic Tagged Image File Format (GeoTIFF) pronom
Tagged Image File Format for Internet Fax (TIFF-FX) pronom
Tagged Image File Format pronom
TIFF Uncompressed File with Exif Metadata fdd
Digital Raster Graphic as TIFF fdd
Adobe Digital Negative (DNG), Version 1.1 fdd
BigTIFF fdd
GeoTIFF, Revision 1.0 fdd
TIFF, Revision 6.0 fdd
—  image/tiff; version=”1.0″Digital Negative Format (DNG) 1.0 pronom
—  image/tiff; version=”1.1″Digital Negative Format (DNG) 1.1 pronom
—  image/tiff; version=”1.3″Digital Negative Format (DNG) 1.3 pronom
—  image/tiff; version=”1.4″Digital Negative Format (DNG) 1.4 pronom
—  image/tiff; version=”2.0″Exchangeable Image File Format (Uncompressed) 2.0 pronom
—  image/tiff; version=”2.1″Exchangeable Image File Format (Uncompressed) 2.1 pronom
—  image/tiff; version=”2.2″Exchangeable Image File Format (Uncompressed) 2.2 pronom
image/tiff-fxTIFF-FX ffw
image/tiff-fx tika
image/vnd-svf; version=”1″Simple Vector Format 1 pronom
image/vnd-svf; version=”2″Simple Vector Format 2 pronom
image/vnd-wap-wbmpWireless Bitmap pronom
image/vnd.adobe.photoshopPSD ffw
Photoshop Image tika
Adobe Photoshop pronom
Adobe Photoshop Large Document Format pronom
Adobe Photoshop Family fdd
Adobe Photoshop Family fdd
image/vnd.cns.inf2image/vnd.cns.inf2 tika
image/vnd.djvuDjVu ffw
image/vnd.djvu tika
DjVu File Format pronom
Secure DjVU pronom
image/vnd.dwgDWG ffw
AutoCad Drawing tika
DWG (AutoCAD Drawing) Format Family fdd
—  image/vnd.dwg; version=”1.0″AutoCAD Drawing 1.0 pronom
—  image/vnd.dwg; version=”1.2″AutoCAD Drawing 1.2 pronom
—  image/vnd.dwg; version=”1.3″AutoCAD Drawing 1.3 pronom
—  image/vnd.dwg; version=”1.4″AutoCAD Drawing 1.4 pronom
—  image/vnd.dwg; version=”2.0″AutoCAD Drawing 2.0 pronom
—  image/vnd.dwg; version=”2.1″AutoCAD Drawing 2.1 pronom
—  image/vnd.dwg; version=”2.2″AutoCAD Drawing 2.2 pronom
—  image/vnd.dwg; version=”2.5″AutoCAD Drawing 2.5 pronom
—  image/vnd.dwg; version=”2.6″AutoCAD Drawing 2.6 pronom
—  image/vnd.dwg; version=”2000-2002″AutoCAD Drawing 2000-2002 pronom
—  image/vnd.dwg; version=”2004-2005″AutoCAD Drawing 2004-2005 pronom
—  image/vnd.dwg; version=”2007-2008″AutoCAD Drawing 2007-2008 pronom
—  image/vnd.dwg; version=”2010/2011/2012″AutoCAD Drawing 2010/2011/2012 pronom
—  image/vnd.dwg; version=”2013/2014″AutoCAD Drawing 2013/2014 pronom
—  image/vnd.dwg; version=”r10″AutoCAD Drawing R10 pronom
—  image/vnd.dwg; version=”r11/12″AutoCAD Drawing R11/12 pronom
—  image/vnd.dwg; version=”r13″AutoCAD Drawing R13 pronom
—  image/vnd.dwg; version=”r14″AutoCAD Drawing R14 pronom
—  image/vnd.dwg; version=”r9″AutoCAD Drawing R9 pronom
image/vnd.dxbAutoCAD DXF simplified Binary tika
image/vnd.dxfDXF ffw
AutoCAD DXF tika
DXF (AutoCAD Drawing Interchange Format) Family, ASCII variant fdd
—  image/vnd.dxf; version=”1.0″Drawing Interchange File Format (ASCII) 1.0 pronom
—  image/vnd.dxf; version=”1.2″Drawing Interchange File Format (ASCII) 1.2 pronom
—  image/vnd.dxf; version=”1.3″Drawing Interchange File Format (ASCII) 1.3 pronom
—  image/vnd.dxf; version=”1.4″Drawing Interchange File Format (ASCII) 1.4 pronom
—  image/vnd.dxf; version=”2.0″Drawing Interchange File Format (ASCII) 2.0 pronom
—  image/vnd.dxf; version=”2.1″Drawing Interchange File Format (ASCII) 2.1 pronom
—  image/vnd.dxf; version=”2.2″Drawing Interchange File Format (ASCII) 2.2 pronom
—  image/vnd.dxf; version=”2.5″Drawing Interchange File Format (ASCII) 2.5 pronom
—  image/vnd.dxf; version=”2.6″Drawing Interchange File Format (ASCII) 2.6 pronom
—  image/vnd.dxf; version=”2000-2002″Drawing Interchange File Format (ASCII) 2000-2002 pronom
Drawing Interchange File Format (Binary) 2000-2002 pronom
—  image/vnd.dxf; version=”2004-2005″Drawing Interchange File Format (Binary) 2004-2005 pronom
—  image/vnd.dxf; version=”2004/2005/2006″Drawing Interchange File Format (ASCII) 2004/2005/2006 pronom
—  image/vnd.dxf; version=”2007/2008/2009″Drawing Interchange File Format (ASCII) 2007/2008/2009 pronom
—  image/vnd.dxf; version=”2010/2011/2012″Drawing Interchange File Format (ASCII) 2010/2011/2012 pronom
—  image/vnd.dxf; version=”2013/2014″Drawing Interchange File Format (ASCII) 2013/2014 pronom
—  image/vnd.dxf; version=”generic”Drawing Interchange File Format (ASCII) Generic pronom
—  image/vnd.dxf; version=”r10″Drawing Interchange File Format (ASCII) R10 pronom
Drawing Interchange File Format (Binary) R10 pronom
—  image/vnd.dxf; version=”r11/12″Drawing Interchange File Format (ASCII) R11/12 pronom
Drawing Interchange File Format (Binary) R11/12 pronom
—  image/vnd.dxf; version=”r13″Drawing Interchange File Format (ASCII) R13 pronom
Drawing Interchange File Format (Binary) R13 pronom
—  image/vnd.dxf; version=”r14″Drawing Interchange File Format (ASCII) R14 pronom
Drawing Interchange File Format (Binary) R14 pronom
—  image/vnd.dxf; version=”r9″Drawing Interchange File Format (ASCII) R9 pronom
—  image/vnd.dxf;format=asciiAutoCAD DXF in ASCII Text form tika
—  image/vnd.dxf;format=binaryAutoCAD DXF in Binary form tika
image/vnd.fastbidsheetimage/vnd.fastbidsheet tika
image/vnd.fpxFlashPix ffw
image/vnd.fpx tika
Kodak FlashPix Image pronom
image/vnd.fstimage/vnd.fst tika
image/vnd.fujixerox.edmics-mmrXerox EDMICS-MMR ffw
image/vnd.fujixerox.edmics-mmr tika
image/vnd.fujixerox.edmics-rlcXerox EDMICS-RLC ffw
image/vnd.fujixerox.edmics-rlc tika
image/vnd.globalgraphics.pgbimage/vnd.globalgraphics.pgb tika
image/vnd.microsoft.iconICO ffw
image/vnd.microsoft.icon tika
Icon file format pronom
image/vnd.mixMIX (Picture It!) ffw
MIX (PhotoDraw) ffw
image/vnd.mix tika
—  image/vnd.mix; version=”1″Microsoft Picture It! Image File 1 pronom
—  image/vnd.mix; version=”1.0″Microsoft PhotoDraw 1.0 pronom
image/vnd.mozilla.apngAPNG ffw
Animated Portable Network Graphics pronom
image/vnd.ms-modiMDI ffw
Microsoft Document Imaging tika
Microsoft Document Imaging File Format pronom
image/vnd.ms-photoJPEG XR ffw
HD Photo, Version 1.0 (Windows Media Photo) fdd
JPEG XR File Format (JXR) fdd
image/vnd.net-fpximage/vnd.net-fpx tika
image/vnd.radianceRadiance HDR ffw
image/vnd.radiance tika
Radiance RGBE Image Format pronom
image/vnd.rn-realflashMacromedia Flash SWF File Format, Version 7 fdd
Macromedia Flash SWF File Format, Version 8 fdd
image/vnd.sealed.pngimage/vnd.sealed.png tika
image/vnd.sealedmedia.softseal.gifimage/vnd.sealedmedia.softseal.gif tika
image/vnd.sealedmedia.softseal.jpgimage/vnd.sealedmedia.softseal.jpg tika
image/vnd.svfSimple Vector Format ffw
image/vnd.svf tika
image/vnd.tencent.tapTAP (Tencent) ffw
image/vnd.valve.source.textureValve Texture Format ffw
Valve Texture Format pronom
image/vnd.wap.wbmpWBMP ffw
Wireless Bitmap File Format tika
image/vnd.xiffXIFF ffw
image/vnd.xiff tika
image/vnd.zbrush.pcxPCX ffw
—  image/vnd.zbrush.pcx; version=”0″PCX 0 pronom
—  image/vnd.zbrush.pcx; version=”2″PCX 2 pronom
—  image/vnd.zbrush.pcx; version=”3″PCX 3 pronom
—  image/vnd.zbrush.pcx; version=”4″PCX 4 pronom
—  image/vnd.zbrush.pcx; version=”5″PCX 5 pronom
image/vpbQuantel VPB image ffw
image/webpWebP ffw
image/webp tika
image/wmfWindows Metafile ffw
Windows Metafile Image pronom
image/x-3ds3DS ffw
image/x-bmpBitmap Image File (BMP), Version 5 fdd
image/x-bpgBetter Portable Graphics tika
image/x-canon-cr3Canon RAW 3 ffw
image/x-canon-crwCamera Image File Format ffw
image/x-cmu-rasterimage/x-cmu-raster tika
image/x-cmximage/x-cmx tika
image/x-dcxMultipage Zsoft Paintbrush Bitmap Graphics pronom
image/x-djvuDjVu File Format pronom
Secure DjVU pronom
image/x-dpxDigital Moving-Picture Exchange (DPX), Version 2.0 fdd
Digital Moving-Picture Exchange (DPX), Version 2.0 fdd
image/x-dwgDWG ffw
AutoCad Drawing tika
image/x-exr; version=”2″OpenEXR 2 pronom
image/x-freehandFreeHand image tika
image/x-hasselblad-3frHasselblad 3FR ffw
image/x-iconICO ffw
Favicon ffw
image/vnd.microsoft.icon tika
Icon file format pronom
image/x-jngJPEG Network Graphics pronom
image/x-jp2-codestreamJPEG 2000 Codestream tika
image/x-jp2-containerJPEG 2000 Container Format tika
—  image/jp2JP2 ffw
JPEG 2000 ffw
GeoJP2 ffw
JPEG 2000 Part 1 (JP2) tika
JP2 (JPEG 2000 part 1) pronom
JPEG 2000 Part 1 (Core) jp2 File Format fdd
—  image/jpmJPM ffw
JPEG 2000 ffw
JPEG 2000 Part 6 (JPM) tika
JPM (JPEG 2000 part 6) pronom
JPEG 2000 Part 6 (Compound) jpm File Format fdd
—  image/jpxJPX ffw
JPEG 2000 ffw
GMLJP2 ffw
JPEG 2000 Part 2 (JPX) tika
JPX (JPEG 2000 part 2) pronom
JPEG 2000 Part 2 (Extensions) jpf (jpx) File Format fdd
—  video/jpmJPEG 2000 Part 6 (JPM) tika
—  video/mj2MJ2 ffw
JPEG 2000 ffw
JPEG 2000 Part 3 (Motion JPEG, MJ2) tika
MJ2 (Motion JPEG 2000) pronom
Motion JPEG 2000 File Format fdd
image/x-jpeg2000-imageJPEG 2000 Part 1 (Core) jp2 File Format fdd
image/x-mrsidMrSID ffw
image/x-mrsid-imageMrSID Image Format, Generation 3 fdd
MrSID Image Format, Generation 2 fdd
image/x-ms-bmpWindows bitmap tika
Bitmap Image File (BMP), Version 5 fdd
image/x-niffNavy Interchange File Format tika
image/x-pcxPCX ffw
image/x-pcx tika
image/x-pentax-pefPentax PEF ffw
image/x-pictPICT ffw
Apple Macintosh QuickDraw/PICT Format tika
—  image/x-pict; version=”1.0″Macintosh PICT Image 1.0 pronom
—  image/x-pict; version=”2.0″Macintosh PICT Image 2.0 pronom
image/x-portable-anymapNetpbm formats ffw
Netpbm formats ffw
Portable Any Map tika
—  image/x-portable-bitmapNetpbm formats ffw
Portable Bit Map tika
Portable Bitmap Image – ASCII pronom
—  image/x-portable-graymapNetpbm formats ffw
Portable Graymap Graphic tika
—  image/x-portable-pixmapNetpbm formats ffw
UNIX Portable Bitmap Graphic tika
Portable Pixel Map – ASCII pronom
image/x-portable-arbitrarymapPortable Arbitrary Map ffw
image/x-psdPhotoshop Image tika
image/x-quicktimeQuickTime File Format fdd
image/x-raw-adobeAdobe Digital Negative tika
image/x-raw-canonCanon raw image tika
image/x-raw-casioCasio raw image tika
image/x-raw-epsonEpson raw image tika
image/x-raw-fujiFuji raw image tika
image/x-raw-hasselbladHasselblad raw image tika
image/x-raw-imaconImacon raw image tika
image/x-raw-kodakKodak raw image tika
image/x-raw-leafLeaf raw image tika
image/x-raw-logitechLogitech raw image tika
image/x-raw-mamiyaMamiya raw image tika
image/x-raw-minoltaMinolta raw image tika
image/x-raw-nikonNikon raw image tika
image/x-raw-olympusOlympus raw image tika
image/x-raw-panasonicPanasonic raw image tika
image/x-raw-pentaxPentax raw image tika
image/x-raw-phaseonePhase One raw image tika
image/x-raw-rawzorRawzor raw image tika
image/x-raw-redRed raw image tika
image/x-raw-sigmaSigma raw image tika
image/x-raw-sonySony raw image tika
image/x-rgbSilicon Graphics RGB Bitmap tika
image/x-sgi-bwSilicon Graphics Image pronom
image/x-sldAutoCAD Slide pronom
image/x-sun-rasterSun Raster Image pronom
image/x-tifTIFF, Revision 6.0 fdd
image/x-tiffTIFF, Revision 6.0 fdd
image/x-win-bitmapMicrosoft Windows Cursor pronom
image/x-wmfWindows Metafile tika
image/x-xcfGIMP Image File tika
image/x-xpixmapimage/x-xpixmap tika
—  image/x-xpixmap; version=”x10″X-Windows Pixmap Image X10 pronom
image/x-xwindowdumpX Windows Dump tika
—  image/x-xwindowdump; version=”x10″X-Windows Screen Dump File X10 pronom
image/xcfGIMP Image File tika
interface/x-winamp-skinWinamp Skin ffw
message/cpimmessage/cpim tika
CPIM Instant Message Format fdd
message/delivery-statusmessage/delivery-status tika
message/disposition-notificationmessage/disposition-notification tika
message/examplemessage/example tika
message/external-bodymessage/external-body tika
message/globalmessage/global tika
message/global-delivery-statusmessage/global-delivery-status tika
message/global-disposition-notificationmessage/global-disposition-notification tika
message/global-headersmessage/global-headers tika
message/httpmessage/http tika
HTTP githublinguist
message/imdn+xmlmessage/imdn+xml tika
message/partialmessage/partial tika
message/s-httpmessage/s-http tika
message/sipmessage/sip tika
message/sipfragmessage/sipfrag tika
message/tracking-statusmessage/tracking-status tika
message/vnd.si.simpmessage/vnd.si.simp tika
model/examplemodel/example tika
model/gltf+jsonglTF (GL Transmission Format) 2.0 fdd
glTF (GL Transmission Format) Family fdd
model/gltf-binaryglTF (GL Transmission Format) 2.0 fdd
glTF (GL Transmission Format) Family fdd
model/igesIGES ffw
Initial Graphics Exchange Specification Format tika
—  model/iges; version=”5.x”Initial Graphics Exchange Specification (IGES) 5.x pronom
model/meshmodel/mesh tika
model/mtlWavefront Material Template Library (MTL) File Format fdd
model/objWavefront OBJ File Format fdd
model/prcProduct Representation Compact (PRC) File Format fdd
model/stlSTL (STereoLithography) File Format, Binary fdd
STL (STereoLithography) File Format Family fdd
STL (STereoLithography) File Format, ASCII fdd
model/u3dUniversal 3D (U3D) format family. ECMA-363, Editions 1-4 fdd
model/vnd-dwfDWF ffw
model/vnd.adobe.dn+dcxucfAdobe Dimension ffw
model/vnd.collada+xmlCOLLADA ffw
model/vnd.dwfmodel/vnd.dwf tika
model/vnd.flatland.3dmlmodel/vnd.flatland.3dml tika
model/vnd.gdlmodel/vnd.gdl tika
model/vnd.gs-gdlmodel/vnd.gs-gdl tika
model/vnd.gs.gdlmodel/vnd.gs.gdl tika
model/vnd.gtwmodel/vnd.gtw tika
model/vnd.moml+xmlmodel/vnd.moml+xml tika
model/vnd.mtsmodel/vnd.mts tika
model/vnd.parasolid.transmit.binarymodel/vnd.parasolid.transmit.binary tika
model/vnd.parasolid.transmit.textmodel/vnd.parasolid.transmit.text tika
model/vnd.usdz+zipUSDZ ffw
model/vnd.valve.source.compiled-mapBSP ffw
model/vnd.vtumodel/vnd.vtu tika
model/vrmlVRML ffw
model/vrml tika
—  model/vrml; version=”1.0″Virtual Reality Modeling Language 1.0 pronom
—  model/vrml; version=”2.0″Virtual Reality Modeling Language 2.0 pronom
model/x3d+binaryX3D ffw
model/x3d+fastinfosetExtensible 3D (X3D) File Format Family fdd
model/x3d+vrmlX3D ffw
model/x3d+xmlX3D ffw
Extensible 3D (X3D) File Format Family fdd
model/x3d-vrmlExtensible 3D (X3D) File Format Family fdd
multipart/alternativemultipart/alternative tika
multipart/appledoubleAppleDouble ffw
multipart/appledouble tika
—  multipart/appledouble; version=”1″AppleDouble Resource Fork 1 pronom
—  multipart/appledouble; version=”2″AppleDouble Resource Fork 2 pronom
multipart/byterangesmultipart/byteranges tika
multipart/digestmultipart/digest tika
multipart/encryptedmultipart/encrypted tika
multipart/examplemultipart/example tika
multipart/form-dataMultipart/Form-Data ffw
multipart/form-data tika
multipart/header-setmultipart/header-set tika
multipart/mixedmultipart/mixed tika
multipart/parallelmultipart/parallel tika
multipart/relatedmultipart/related tika
Microsoft Web Archive pronom
multipart/reportmultipart/report tika
multipart/signedmultipart/signed tika
multipart/voice-messagemultipart/voice-message tika
multipart/x-tarTape Archive (tar) File Format Family fdd
text/aplAPL githublinguist
text/calendarICalendar ffw
text/calendar tika
Internet Calendar and Scheduling format pronom
iCalendar Electronic Calendar and Scheduling Format fdd
text/comma-separated-valuesCSV ffw
text/csv-schemaCSV Schema pronom
text/directorytext/directory tika
text/dnsZone file ffw
text/dns tika
text/ecmascripttext/ecmascript tika
text/enrichedtext/enriched tika
text/exampletext/example tika
text/geminiGemini ffw
text/htmlHTML ffw
HyperText Markup Language tika
Java Servlet Page pronom
PHP Script Page pronom
Hypertext Markup Language pronom
HyperText Markup Language (HTML) Format Family fdd
HyperText Markup Language (HTML) 5 fdd
Extensible HyperText Markup Language (XHTML), 1.0 fdd
HTML+Razor githublinguist
HTML githublinguist
HTML+ECR githublinguist
Kit githublinguist
Marko githublinguist
HTML+EEX githublinguist
MTML githublinguist
StringTemplate githublinguist
Svelte githublinguist
—  text/html; version=”2.0″Hypertext Markup Language 2.0 pronom
—  text/html; version=”3.2″Hypertext Markup Language 3.2 pronom
—  text/html; version=”4.0″Hypertext Markup Language 4.0 pronom
—  text/html; version=”4.01″Hypertext Markup Language 4.01 pronom
—  text/html; version=”5″Hypertext Markup Language 5 pronom
text/jsonJSON (JavaScript Object Notation) fdd
text/jsxTSX githublinguist
text/markdownMarkdown ffw
CommonMark ffw
text/mircIRC log githublinguist
text/n3Notation3 pronom
text/parityfectext/parityfec tika
text/pdfPDF (Portable Document Format) Family fdd
text/plainPlain text ffw
ASCII Art ffw
FILE ID.DIZ ffw
Freenet node reference ffw
Xbill.scores ffw
Atomix.scores ffw
Atc score ffw
Axc ffw
ALC ffw
ALD ffw
ALI ffw
ALT ffw
AOI ffw
ADD ffw
ADI ffw
text/plain tika
Macintosh Text File pronom
MS-DOS Text File pronom
Unicode Text File pronom
7-bit ANSI Text pronom
7-bit ASCII Text pronom
Fixed Width Values Text File pronom
Plain Text File pronom
MS-DOS Text File with line breaks pronom
8-bit ANSI Text pronom
8-bit ASCII Text pronom
Steel Detailing Neutral Format pronom
Microsoft Internet Shortcut pronom
ESRI World File fdd
—  application/infINF (Windows) ffw
Windows setup INFormation tika
Windows Setup File pronom
—  application/javascriptJavaScript ffw
JavaScript Source Code tika
JavaScript file pronom
ECMAScript Language (ECMA-262), including JavaScript fdd
JavaScript+ERB githublinguist
— —  application/jsonJSON ffw
application/json tika
JSON Data Interchange Format pronom
JSON (JavaScript Object Notation) fdd
GeoJSON, Version 1.0 (2008) fdd
JSON5 githublinguist
JSONLD githublinguist
Jupyter Notebook githublinguist
Ecere Projects githublinguist
JSONiq githublinguist
JSON githublinguist
Max githublinguist
—  application/mboxMbox ffw
application/mbox tika
MBOX pronom
MBOX Email Format fdd
—  application/relax-ng-compact-syntaxapplication/relax-ng-compact-syntax tika
—  application/rtfRTF ffw
Rich Text Format File tika
Rich Text Format (RTF) Family fdd
— —  application/rtf; version=”0″Rich Text Format 0 pronom
— —  application/rtf; version=”1.0-1.4″Rich Text Format 1.0-1.4 pronom
— —  application/rtf; version=”1.5-1.6″Rich Text Format 1.5-1.6 pronom
— —  application/rtf; version=”1.7″Rich Text Format 1.7 pronom
— —  application/rtf; version=”1.8″Rich Text Format 1.8 pronom
— —  application/rtf; version=”1.9″Rich Text Format 1.9 pronom
— —  text/rtf; version=”1.0-1.4″Rich Text Format 1.0-1.4 pronom
— —  text/rtf; version=”1.5-1.6″Rich Text Format 1.5-1.6 pronom
— —  text/rtf; version=”1.7″Rich Text Format 1.7 pronom
— —  text/rtf; version=”1.8″Rich Text Format 1.8 pronom
— —  text/rtf; version=”1.9″Rich Text Format 1.9 pronom
—  application/x-bibtex-text-fileapplication/x-bibtex-text-file tika
—  application/x-httpd-jspJava Server Page tika
—  application/x-javascriptJavaScript Source Code tika
—  application/x-projectapplication/x-project tika
— —  application/x-project; version=”1.0″Microsoft Project Export File 1.0 pronom
— —  application/x-project; version=”3.0″Microsoft Project Export File 3.0 pronom
— —  application/x-project; version=”4.0″Microsoft Project Export File 4.0 pronom
—  application/x-sasSAS Program tika
—  application/x-setupscriptWindows setup INFormation tika
—  application/x-shUNIX/LINUX Shell Script tika
Shell Archive Format pronom
—  application/x-tclTcl script tika
—  application/x-texTeX ffw
TeX Source tika
— —  application/x-latexLaTeX Source Document tika
—  application/x-wine-extension-infWindows setup INFormation tika
—  application/x-xmlExtensible Markup Language tika
—  application/xmlXML ffw
XML Schema Definition ffw
Extensible Markup Language tika
XML Schema Definition pronom
Extensible Stylesheet Language pronom
XML (Extensible Markup Language) fdd
ONIX for Books fdd
Ant Build System githublinguist
— —  application/dif+xmlapplication/dif+xml tika
— —  application/dita+xmlDarwin Information Typing Architecture tika
— — —  application/dita+xml;format=mapDITA Map tika
— — —  application/dita+xml;format=taskDITA Task Topic tika
— — —  application/dita+xml;format=topicDITA Topic tika
— — — —  application/dita+xml;format=conceptDITA Concept Topic tika
— — —  application/dita+xml;format=valDITA Conditional Processing Profile tika
— —  application/rdf+xmlRDF ffw
XML syntax for RDF graphs tika
RDF/XML pronom
— —  application/vnd.google-earth.kml+xmlKML ffw
Keyhole Markup Language tika
KML, Version 2.2 fdd
— —  application/x-adobe-indesign-interchangeAdobe InDesign Interchange format tika
— —  application/x-fictionbook+xmlFictionBook document tika
— —  application/xml; version=”1.0″Extensible Markup Language 1.0 pronom
— —  image/svg+xmlScalable Vector Graphics ffw
Scalable Vector Graphics tika
Scalable Vector Graphics Compressed pronom
Scalable Vector Graphics (SVG) File Format Family fdd
Scalable Vector Graphics (SVG), Version 1.1 fdd
Scalable Vector Graphics (SVG), Version 2 fdd
Scalable Vector Graphics (SVG) Tiny, Version 1.2 fdd
— — —  image/svg+xml; version=”1.0″Scalable Vector Graphics 1.0 pronom
— — —  image/svg+xml; version=”1.1″Scalable Vector Graphics 1.1 pronom
— —  image/vnd.adobe.premiereimage/vnd.adobe.premiere tika
— —  text/iso19139+xmltext/iso19139+xml tika
—  application/xml-dtdDTD ffw
XML Document Type Definition tika
XML Document Type Definition (DTD) fdd
—  application/xqueryXQuery source code tika
XQuery githublinguist
—  text/aspActive Server Page tika
—  text/aspdotnetASP .NET tika
—  text/cssCascading Style Sheets ffw
Cascading Style Sheet tika
Cascading Style Sheet pronom
Cascading Style Sheet (CSS) File Format fdd
Cloud Firestore Security Rules githublinguist
Less githublinguist
CSS githublinguist
—  text/csvCSV ffw
text/csv tika
Comma Separated Values pronom
CSV, Comma Separated Values (RFC 4180) fdd
—  text/javascriptJavaScript ffw
JavaScript Source Code tika
JSON (JavaScript Object Notation) fdd
JSON with Comments githublinguist
JavaScript githublinguist
Qt Script githublinguist
Cycript githublinguist
PEG.js githublinguist
—  text/propertiesJava Properties tika
—  text/rtfRTF ffw
Rich Text Format File tika
Rich Text Format (RTF) Family fdd
—  text/vttWebVTT ffw
Web Video Text Tracks Format tika
—  text/x-actionscriptActionScript source code tika
—  text/x-adaAda source code tika
—  text/x-applescriptAppleScript source code tika
—  text/x-asciidocAsciidoc source code tika
—  text/x-asmAssembler source code tika
—  text/x-aspectjAspectJ source code tika
—  text/x-assemblyAssembler source code tika
—  text/x-awkAWK script tika
—  text/x-basicBasic source code tika
— —  text/x-vbasicVisual basic source code tika
— — —  text/x-vbdotnetVB.NET source code tika
— — —  text/x-vbscriptVBScript source code tika
—  text/x-cC source code tika
— —  image/x-xbitmapXBM ffw
image/x-xbitmap tika
— — —  image/x-xbitmap; version=”x10″X-Windows Bitmap Image X10 pronom
— — —  image/x-xbitmap; version=”x11″X-Windows Bitmap Image X11 pronom
—  text/x-c++hdrC++ source code header tika
—  text/x-c++srcC++ source code tika
AngelScript githublinguist
Cuda githublinguist
Metal githublinguist
C++ githublinguist
Squirrel githublinguist
SWIG githublinguist
Edje Data Collection githublinguist
Game Maker Language githublinguist
AGS Script githublinguist
—  text/x-cgiCGI script tika
—  text/x-chdrC source code header tika
—  text/x-clojureClojure source code tika
edn githublinguist
Rouge githublinguist
Clojure githublinguist
wisp githublinguist
—  text/x-cobolCOBOL source code tika
COBOL githublinguist
—  text/x-coffeescriptCoffeeScript source code tika
CSON githublinguist
CoffeeScript githublinguist
EmberScript githublinguist
—  text/x-coldfusionColdFusion source code tika
—  text/x-common-lispCommon Lisp source code tika
NewLisp githublinguist
LFE githublinguist
Emacs Lisp githublinguist
WebAssembly githublinguist
GCC Machine Description githublinguist
SRecode Template githublinguist
KiCad Layout githublinguist
NetLogo githublinguist
Common Lisp githublinguist
—  text/x-csharpC# source code tika
EQ githublinguist
Uno githublinguist
C# githublinguist
Beef githublinguist
—  text/x-csrcC source code tika
DTrace githublinguist
X PixMap githublinguist
NWScript githublinguist
OpenCL githublinguist
XC githublinguist
XS githublinguist
Unified Parallel C githublinguist
HolyC githublinguist
C githublinguist
X BitMap githublinguist
—  text/x-dD source code tika
Volt githublinguist
D githublinguist
—  text/x-difftext/x-diff tika
Diff githublinguist
—  text/x-dtdXML Document Type Definition tika
—  text/x-eiffelEiffel source code tika
Eiffel githublinguist
—  text/x-emacs-lispEmacs Lisp source code tika
—  text/x-erlangErlang source code tika
Erlang githublinguist
—  text/x-expectExpect Script tika
—  text/x-forthForth source code tika
MUF githublinguist
Forth githublinguist
—  text/x-fortranFortran source code tika
Fortran githublinguist
Fortran Free Form githublinguist
—  text/x-goGo source code tika
Go githublinguist
V githublinguist
—  text/x-groovyGroovy source code tika
Groovy githublinguist
—  text/x-hamlHAML source code tika
Haml githublinguist
—  text/x-haskellHaskell source code tika
Haskell githublinguist
Grammatical Framework githublinguist
Cabal Config githublinguist
C2hs Haskell githublinguist
PureScript githublinguist
Dhall githublinguist
—  text/x-haxeHaxe source code tika
Haxe githublinguist
—  text/x-idlInteface Definition Language tika
IDL githublinguist
—  text/x-iniConfiguration file tika
—  text/x-javaJava source code tika
ChucK githublinguist
UnrealScript githublinguist
Java githublinguist
Apex githublinguist
—  text/x-java-propertiesJava Properties tika
—  text/x-java-sourceJava source code tika
—  text/x-jspJava Server Page tika
—  text/x-lessLESS source code tika
—  text/x-lexLex/Flex source code tika
—  text/x-logapplication log tika
—  text/x-luaLua source code tika
Lua githublinguist
Terra githublinguist
—  text/x-matlabMatlab source code tika
—  text/x-mlML source code tika
—  text/x-modulaModula source code tika
—  text/x-objcsrcObjective-C ffw
Objective-C source code tika
—  text/x-ocamlOcaml source code tika
OCaml githublinguist
Standard ML githublinguist
—  text/x-pascalPascal source code tika
Component Pascal githublinguist
Pascal githublinguist
—  text/x-perlPerl script tika
Perl githublinguist
Raku githublinguist
Pod githublinguist
—  text/x-phpPHP script tika
—  text/x-prologProlog source code tika
—  text/x-propertiesJava Properties tika
EditorConfig githublinguist
INI githublinguist
Record Jar githublinguist
Windows Registry Entries githublinguist
Java Properties githublinguist
Git Config githublinguist
TextMate Properties githublinguist
—  text/x-pythonPython script tika
GN githublinguist
Easybuild githublinguist
Sage githublinguist
Xonsh githublinguist
NumPy githublinguist
Starlark githublinguist
Python githublinguist
—  text/x-rexxRexx source code tika
—  text/x-rsrcR ffw
R source code tika
R githublinguist
—  text/x-rstreStructuredText source code tika
reStructuredText githublinguist
—  text/x-rubyRuby source code tika
HCL githublinguist
Mirah githublinguist
Ruby githublinguist
—  text/x-scalaScala source code tika
Scala githublinguist
—  text/x-schemeScheme source code tika
Scheme githublinguist
Nu githublinguist
—  text/x-sedSed code tika
—  text/x-setexttext/x-setext tika
—  text/x-sqlSQL code tika
PLpgSQL githublinguist
SQLPL githublinguist
SQL githublinguist
—  text/x-stsrcSmalltalk source code tika
Smalltalk githublinguist
—  text/x-tclTcl script tika
Tcl githublinguist
Glyph githublinguist
—  text/x-texTeX Source tika
—  text/x-vcalendartext/x-vcalendar tika
VCalendar format pronom
—  text/x-vcardtext/x-vcard tika
—  text/x-verilogVerilog source code tika
Verilog githublinguist
—  text/x-vhdlVHDL source code tika
VHDL githublinguist
—  text/x-web-markdownMarkdown source code tika
—  text/x-yaccYacc/Bison source code tika
—  text/x-yamlYAML source code tika
RAML githublinguist
LookML githublinguist
Common Workflow Language githublinguist
YAML githublinguist
Unity3D Asset githublinguist
Kaitai Struct githublinguist
SaltStack githublinguist
—  text/xmlXML ffw
XML Schema Definition ffw
Skype shared configuration ffw
Extensible Markup Language tika
DTB (Digital Talking Book), 2005 fdd
XML (Extensible Markup Language) fdd
ESRI Geodatabase XML fdd
Geography Markup Language (GML) fdd
ONIX for Books fdd
XPages githublinguist
COLLADA githublinguist
Eagle githublinguist
Maven POM githublinguist
XML githublinguist
XSLT githublinguist
LabVIEW githublinguist
XProc githublinguist
SVG githublinguist
Genshi githublinguist
XML Property List githublinguist
— —  text/xml; version=”1.0″Extensible Markup Language 1.0 pronom
DROID Signature File Format 1.0 pronom
DROID File Collection File Format 1.0 pronom
text/prs.fallenstein.rsttext/prs.fallenstein.rst tika
text/prs.lines.tagtext/prs.lines.tag tika
text/redtext/red tika
text/rfc822-headerstext/rfc822-headers tika
text/richtexttext/richtext tika
text/rssapplication/rss+xml tika
text/rtp-enc-aescm128text/rtp-enc-aescm128 tika
text/rtxtext/rtx tika
text/sgmlSGML ffw
text/sgml tika
Standard Generalized Markup Language pronom
Standard Generalized Markup Language (SGML). ISO 8879:1986 fdd
text/t140text/t140 tika
text/tab-separated-valuesTab delimited ffw
text/tab-separated-values tika
Tab-separated values pronom
TSV, Tab-Separated Values fdd
text/troffRoff/nroff/troff/groff Unformatted Manual Page (UNIX) tika
Roff Manpage githublinguist
Roff githublinguist
Pic githublinguist
text/turtleTurtle pronom
Turtle githublinguist
text/ulpfectext/ulpfec tika
text/uri-listtext/uri-list tika
text/urlInternet Shortcut ffw
text/vbscriptVBScript githublinguist
text/vcardVCard ffw
vCard pronom
text/vnd.abctext/vnd.abc tika
text/vnd.ascii-artASCII Art ffw
text/vnd.curltext/vnd.curl tika
text/vnd.curl.dcurltext/vnd.curl.dcurl tika
text/vnd.curl.mcurltext/vnd.curl.mcurl tika
text/vnd.curl.scurltext/vnd.curl.scurl tika
text/vnd.dmclientscripttext/vnd.dmclientscript tika
text/vnd.esmertec.theme-descriptortext/vnd.esmertec.theme-descriptor tika
text/vnd.flytext/vnd.fly tika
text/vnd.fmi.flexstortext/vnd.fmi.flexstor tika
text/vnd.graphviztext/vnd.graphviz tika
text/vnd.in3d.3dmltext/vnd.in3d.3dml tika
text/vnd.in3d.spottext/vnd.in3d.spot tika
text/vnd.iptc.anpaAmerican Newspaper Publishers Association Wire Feeds tika
text/vnd.iptc.newsmltext/vnd.iptc.newsml tika
text/vnd.iptc.nitfNews Industry Text Format ffw
text/vnd.iptc.nitf tika
NITF, News Industry Text Format fdd
text/vnd.latex-ztext/vnd.latex-z tika
text/vnd.motorola.reflextext/vnd.motorola.reflex tika
text/vnd.ms-mediapackagetext/vnd.ms-mediapackage tika
text/vnd.net2phone.commcenter.commandtext/vnd.net2phone.commcenter.command tika
text/vnd.si.uricataloguetext/vnd.si.uricatalogue tika
text/vnd.sun.j2me.app-descriptortext/vnd.sun.j2me.app-descriptor tika
text/vnd.trolltech.linguisttext/vnd.trolltech.linguist tika
text/vnd.wap.sitext/vnd.wap.si tika
text/vnd.wap.sltext/vnd.wap.sl tika
text/vnd.wap.wmltext/vnd.wap.wml tika
text/vnd.wap.wmlscriptWML Script tika
text/x-ascii-artASCII Art ffw
text/x-brainfuckBrainfuck githublinguist
text/x-cmakeMakefile githublinguist
CMake githublinguist
text/x-comma-separated-valuesCSV ffw
text/x-cross-domain-policyAdobe Cross Domain Policy File ffw
text/x-crystalCrystal githublinguist
text/x-csvCSV ffw
text/x-cythonCython githublinguist
text/x-djangoJinja githublinguist
text/x-dockerfileDockerfile githublinguist
text/x-dylanDylan githublinguist
text/x-ebnfLark githublinguist
EBNF githublinguist
text/x-eclECL githublinguist
text/x-elmElm githublinguist
text/x-factorFactor githublinguist
text/x-fsharpF# githublinguist
text/x-gfmMarkdown githublinguist
RMarkdown githublinguist
text/x-juliaJulia githublinguist
text/x-kotlinKotlin githublinguist
Asymptote githublinguist
text/x-literate-haskellLiterate Haskell githublinguist
text/x-livescriptLiveScript githublinguist
text/x-markdownMarkdown ffw
CommonMark ffw
text/x-mathematicaMathematica githublinguist
text/x-modelicaModelica githublinguist
text/x-mumpsM githublinguist
text/x-nfoNFO ffw
text/x-nginx-confNginx githublinguist
text/x-nhNewick tree Format ffw
text/x-nsisNSIS githublinguist
text/x-objectivecObjective-C++ githublinguist
Objective-C githublinguist
text/x-octaveMATLAB githublinguist
text/x-ozOz githublinguist
text/x-pdfPDF (Portable Document Format) Family fdd
text/x-plsqlPLSQL githublinguist
text/x-protobufProtocol Buffer githublinguist
text/x-pugPug githublinguist
text/x-puppetPuppet githublinguist
text/x-rpm-specRPM Spec githublinguist
text/x-rustsrcReScript githublinguist
Rust githublinguist
Reason githublinguist
text/x-sasSAS githublinguist
text/x-sassSass githublinguist
text/x-scssSCSS githublinguist
text/x-server-parsed-htmlServer Side Includes ffw
text/x-server-parsed-html3Server Side Includes ffw
text/x-shGentoo Ebuild githublinguist
Gentoo Eclass githublinguist
Shell githublinguist
OpenRC runscript githublinguist
Ignore List githublinguist
ShellSession githublinguist
Alpine Abuild githublinguist
Git Attributes githublinguist
Tcsh githublinguist
text/x-slimSlim githublinguist
text/x-smartySmarty githublinguist
Latte githublinguist
Mustache githublinguist
text/x-soyClosure Templates githublinguist
text/x-spreadsheetLTspice Symbol githublinguist
text/x-stexBibTeX githublinguist
TeX githublinguist
text/x-swiftSwift githublinguist
text/x-systemverilogSystemVerilog githublinguist
text/x-texinfoapplication/x-texinfo tika
text/x-textileTextile githublinguist
text/x-tika-text-based-messageText-based (non-binary) Message tika
—  message/newsmessage/news tika
—  message/rfc822Internet e-mail message format ffw
message/rfc822 tika
Microsoft Web Archive pronom
Internet Message Format pronom
Internet Message Format fdd
Email (Electronic Mail Format) fdd
— —  message/rfc822; version=”1.0″MIME Email 1.0 pronom
—  message/x-emlxmessage/x-emlx tika
text/x-tomlTOML githublinguist
text/x-ttcn-asnASN.1 githublinguist
text/x-twigTwig githublinguist
text/x-urlInternet Shortcut ffw
text/x-uuencodetext/x-uuencode tika
text/x-vbVisual Basic .NET githublinguist
VBA githublinguist
FreeBasic githublinguist
text/x-webidlWebIDL githublinguist
text/xml-external-parsed-entityapplication/xml-external-parsed-entity tika
text/xslXSL Format tika
XSL Transformations tika
video/3gpp3GP ffw
video/3gpp tika
3GPP Audio/Video File pronom
video/3gpp-ttvideo/3gpp-tt tika
video/3gpp23G2 ffw
video/3gpp2 tika
video/aviAVI ffw
Audio Video Interleave File tika
AVI (Audio Video Interleaved) File Format fdd
video/bmpegvideo/bmpeg tika
video/bt656video/bt656 tika
video/celbvideo/celb tika
video/dvvideo/dv tika
Digital Video pronom
video/examplevideo/example tika
video/h261video/h261 tika
video/h263video/h263 tika
video/h263-1998video/h263-1998 tika
video/h263-2000video/h263-2000 tika
video/h264video/h264 tika
video/jpegvideo/jpeg tika
video/jpeg2000video/jpeg2000 tika
video/mp1svideo/mp1s tika
MPEG-1 Video Coding (H.261) fdd
video/mp2pvideo/mp2p tika
video/mp2tvideo/mp2t tika
MPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/mp4v-esvideo/mp4v-es tika
MPEG-4 File Format, Version 2 fdd
video/mpegMPEG-1 ffw
MPEG Movie Clip tika
MPEG-1 Program Stream pronom
MPEG-2 Program Stream pronom
MPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/mpeg2MPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/mpeg4-genericvideo/mpeg4-generic tika
MPEG-4 File Format, Version 2 fdd
video/mpgMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/mpvvideo/mpv tika
MPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/msvideoAVI ffw
Audio Video Interleave File tika
AVI (Audio Video Interleaved) File Format fdd
video/nvvideo/nv tika
video/parityfecvideo/parityfec tika
video/pointervideo/pointer tika
video/quicktimeQuickTime ffw
video/quicktime tika
Quicktime pronom
QuickTime File Format fdd
—  video/mp4MP4 ffw
video/mp4 tika
MPEG-4 Media File pronom
MPEG-4 File Format for Advanced Video Coding (Non-FRExt Extensions, Part 15) fdd
MPEG-4 File Format, Version 2 fdd
MPEG-4 File Format, Version 1 fdd
— —  video/x-m4vvideo/x-m4v tika
video/rawvideo/raw tika
video/rtp-enc-aescm128video/rtp-enc-aescm128 tika
video/rtxvideo/rtx tika
video/smpte292mvideo/smpte292m tika
video/ulpfecvideo/ulpfec tika
video/vc1video/vc1 tika
video/vnd-vivoVivoActive pronom
video/vnd.aviAVI ffw
AVI (Audio Video Interleaved) File Format fdd
video/vnd.cctvvideo/vnd.cctv tika
video/vnd.dlna.mpeg-ttsvideo/vnd.dlna.mpeg-tts tika
video/vnd.fvtvideo/vnd.fvt tika
video/vnd.hns.videovideo/vnd.hns.video tika
video/vnd.iptvforum.1dparityfec-1010video/vnd.iptvforum.1dparityfec-1010 tika
video/vnd.iptvforum.1dparityfec-2005video/vnd.iptvforum.1dparityfec-2005 tika
video/vnd.iptvforum.2dparityfec-1010video/vnd.iptvforum.2dparityfec-1010 tika
video/vnd.iptvforum.2dparityfec-2005video/vnd.iptvforum.2dparityfec-2005 tika
video/vnd.iptvforum.ttsavcvideo/vnd.iptvforum.ttsavc tika
video/vnd.iptvforum.ttsmpeg2video/vnd.iptvforum.ttsmpeg2 tika
video/vnd.motorola.videovideo/vnd.motorola.video tika
video/vnd.motorola.videopvideo/vnd.motorola.videop tika
video/vnd.mpegurlvideo/vnd.mpegurl tika
video/vnd.ms-playready.media.pyvvideo/vnd.ms-playready.media.pyv tika
video/vnd.nokia.interleaved-multimediavideo/vnd.nokia.interleaved-multimedia tika
video/vnd.nokia.videovoipvideo/vnd.nokia.videovoip tika
video/vnd.objectvideovideo/vnd.objectvideo tika
video/vnd.radgamettools.binkBink Video ffw
—  video/vnd.radgamettools.bink; version=”2″Bink Video Format 2 pronom
video/vnd.radgamettools.smackerSmacker ffw
video/vnd.rn-realvideoReal Video pronom
RealVideo, Version 10 fdd
video/vnd.sealed.mpeg1video/vnd.sealed.mpeg1 tika
video/vnd.sealed.mpeg4video/vnd.sealed.mpeg4 tika
video/vnd.sealed.swfvideo/vnd.sealed.swf tika
video/vnd.sealedmedia.softseal.movvideo/vnd.sealedmedia.softseal.mov tika
video/vnd.vivovideo/vnd.vivo tika
video/x-dvDV-DIF (Digital Video Digital Interface Format) fdd
video/x-f4vvideo/x-f4v tika
video/x-flcvideo/x-flc tika
video/x-flivideo/x-fli tika
video/x-flvFLV ffw
video/x-flv tika
Macromedia Flash FLV Video File Format fdd
—  video/x-flv; version=”1″Macromedia FLV 1 pronom
video/x-jngvideo/x-jng tika
video/x-matroskaMatroska Multimedia Container fdd
Matroska Multimedia Container fdd
video/x-matroska-3dMatroska Multimedia Container fdd
video/x-mngMNG ffw
video/x-mng tika
Multiple-image Network Graphics pronom
video/x-mpegMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/x-mpeg2aMPEG-2 Video Encoding (H.262) fdd
MPEG-2 Encoding Family fdd
video/x-mpgMPEG-2 Video Encoding (H.262) fdd
MPEG-1 Video Coding (H.261) fdd
MPEG-2 Encoding Family fdd
video/x-ms-asfASF ffw
Windows Media Metafile ffw
video/x-ms-asf tika
video/x-ms-asfASF (Advanced Systems Format) fdd
—  audio/x-ms-wmaaudio/x-ms-wma tika
Windows Media Audio pronom
WMA (Windows Media Audio) File Format fdd
—  video/x-ms-wmvWMV ffw
video/x-ms-wmv tika
Windows Media Video pronom
WMV (Windows Media Video) File Format fdd
video/x-ms-asf-pluginASF (Advanced Systems Format) fdd
ASF (Advanced Systems Format) fdd
video/x-ms-asxWindows Media Metafile ffw
video/x-ms-wmvideo/x-ms-wm tika
video/x-ms-wmASF (Advanced Systems Format) fdd
video/x-ms-wmaWMA ffw
video/x-ms-wmxvideo/x-ms-wmx tika
ASF (Advanced Systems Format) fdd
video/x-ms-wvxvideo/x-ms-wvx tika
video/x-msvideoAVI ffw
Audio Video Interleave File tika
Audio/Video Interleaved Format pronom
AVI (Audio Video Interleaved) File Format fdd
video/x-quicktimeQuickTime File Format fdd
video/x-sgi-movieSGI movie ffw
video/x-sgi-movie tika
wwwserver/redirectionInternet Shortcut ffw
x-conference/x-cooltalkCooltalk Audio tika
x-world/x-3dmf3DMF ffw

Source :
https://www.digipres.org/formats/mime-types/

Google’s New Safety Section Shows What Data Android Apps Collect About Users

Google on Tuesday officially began rolling out a new “Data safety” section for Android apps on the Play Store to highlight the type of data being collected and shared with third-parties.

“Users want to know for what purpose their data is being collected and whether the developer is sharing user data with third parties,” Suzanne Frey, Vice President of product for Android security and privacy, said. “In addition, users want to understand how app developers are securing user data after an app is downloaded.”

The transparency measure, which is built along the lines of Apple’s “Privacy Nutrition Labels,” was first announced by Google nearly a year ago, in May 2021.

The Data safety section, which will show up against every app listing on the digital storefront, presents a unified view of what data is being collected, for what purpose it’s being used, and how it’s handled, while also highlighting what data is being shared with third-parties.

On top of that, the labels can also show an “app’s security practices, like encryption of data in transit and whether users can ask for data to be deleted,” Frey noted, in addition to validating those practices against security standards such as the Mobile Application Security Verification Standard (MASVS).

Google Data Safety Section

The feature is expected to be gradually made available to all users, while giving app developers a deadline of July 20, 2022 to complete the section and keep them updated should they change the apps’ functionality or data handling methods.

That said, Data safety is expected to face similar concerns to that of Apple’s in that the system is built entirely on an honor system, which requires app developers to be truthful and clear-cut about what they do with the data, and not list inaccurate labels.

Apple has since said that it would routinely audit labels for accuracy, thereby ensuring that the labels are reliable and don’t give users a false sense of security about the data being collected and shared.

Google, last year, had said that it intends to institute a mechanism in place that requires developers to furnish accurate information, and that it will mandate them to fix misrepresentations should it identify instances of policy violations.

While the search giant has explicitly stated that its app review process is not designed to certify the accuracy and completeness of the data safety declarations provided by third-party app developers, it’s outlining strong measures to handle such transgressions.

The company is warning that it will be taking suitable enforcement measures when it identifies a deviation from the information provided in the section. Failing to ensure compliance can result in blocked updates or removal from Google Play.

“When Google becomes aware of a discrepancy between your app behavior and your declaration, we may take appropriate action, including enforcement action,” the company said in an updated support article.

Source :
https://thehackernews.com/2022/04/googles-new-safety-section-shows-what.html

The Top 10 Most Popular Streaming App

Even though streaming video on demand has been around since well before the pandemic, it sure did skyrocket in use worldwide when the majority of people were stuck at home self-isolating. Streaming apps helped us survive being isolated from the outside world and restricted from doing the normal stuff that we do day-to-day.

There are lots of streaming apps out there, but during our ranking of the top ten apps, here’s what we were looking for most:

  1. Price — How much you’ll need to shell out to watch.
  2. Amount of content — Is there tons of selection and variety of content to binge-watch?
  3. Content quality — Are you going to get the best movies and TV shows or are you going to suffer from boredom?
  4. Unique content — Can you watch originals and one-of-a-kind show that others can’t provide?
  5. Content update frequency — After being a couch potato for a month, do you get any new content, or have they already shown everything they’ve got?

With that being said, let’s proceed with our list of top streaming apps!

  • Netflix
    • More than 200 million subscribers.
    • Worldwide service.
    • Has a wide range of content.
    • Best original content.
    • Between $9.99 and $19.99 for a monthly subscription.
    • Up to 4 simultaneous streams.
  • Disney+
    • 130 million subscribers.
    • Available in North and South America, North and Western Europe, and Asia-Pacific.
    • Full of shows that are safe for kids, heart-warming and nostalgic content.
    • Has great original content from Marvel.
    • $7.99 for a monthly subscription (an additional fee for movie content is required).
    • Up to 4 simultaneous streams.
  • Hulu & Hulu+ Live TV
    • Around 45 million subscribers.
    • Available in the United States.
    • Provides shows that have been previously aired.
    • Access to different live channels (Hulu+ Live TV).
    • Has original content.
    • Either $6.99 or $12.99 for a monthly subscription (Hulu).
    • Either $66.99 or 75.99 for a monthly subscription (Hulu + Live TV).
    • Up to 2 simultaneous streams.
  • HBO Max
    • More than 70 million subscribers.
    • Available in the US, Latin America, and Central and Eastern Europe.
    • Over 2,000 titles to choose from.
    • Has some very popular originals.
    • Either $9.99 or $14.99 for a monthly subscription.
    • Up to 3 simultaneous streams.
  • Peacock
    • 24 million subscribers.
    • Available in Austria, Germany, Ireland, Italy, the UK, and the US.
    • Provides classic TV shows and movies.
    • Available for free or premium ($4.99 for a monthly subscription).
    • Up to 3 simultaneous streams.
  • Paramount+
    • 32 million subscribers.
    • Available in Australia, Canada, Central America, South America, Northern Europe, and the Middle East.
    • Content from MTV, Comedy Central, Paramount, and CBS.
    • Either $4.99 or $9.99 for a monthly subscription (with or without commercial plans).
    • Up to 3 simultaneous streams.
  • Amazon Prime Video
    • 175 million subscribers.
    • Available worldwide.
    • Around 12,000 titles to choose from.
    • Either $8.99 or $14.99 for a monthly subscription.
    • Up to 3 simultaneous streams.
  • Discovery+
    • 22 million subscribers.
    • Available in the US, Brazil, Canada, Japan, the UK, Spain, the Philippines, and more.
    • Content from different TV channels.
    • Around 1,500 different titles.
    • Either $4.99 or $6.99 for a monthly subscription (ad-free for the higher price).
    • Up to 4 simultaneous streams.
  • Apple TV+
    • 20 million subscribers.
    • Available worldwide.
    • Only shows original content.
    • $4.99 for a monthly subscription.
    • Up to 6 simultaneous streams.
  • iQIYI
    • 103 million subscribers.
    • Available worldwide.
    • iQIYI originals and other licensed content from vendors.
    • Either $0.99 or $6.99 for a monthly subscription (upgrade to VIP for more content).
    • Up to 2 or 4 simultaneous streams (depending on the plan).

Aside from the ones listed above, here are some other available streaming apps.

  • iFlix
    • 25 million subscribers.
    • Available in Asia.
  • YouTube Premium
    • 50 million subscribers.
    • Available in 101 countries.
  • ESPN+
    • 21 million subscribers.
    • Available in the United States.
  • Rakuten TV
  • Viki
  • Crunchyroll
  • WeTV

There are lots of new and emerging apps out there, but we need to be wary about the apps we install on our devices, specifically on our mobile phones (especially Android devices). If you accidentally download a malicious app, it could steal your private information or even hijack your phone. Read more about this potential danger here.

With that being said, it’s a great idea to download Trend Micro Mobile Security so that you can verify that the apps you use are 100% safe. Trend Micro Mobile Security also safeguards against fraudulent sites, identity theft, and features performance-boosting tools.

Once your device is protected, you can easily find a comfortable area to relax in and start binge-watching your favorite shows and movies using your chosen streaming service!

Source :
https://news.trendmicro.com/2022/04/27/popular-streaming-apps-netflix-disney-plus-hbo-max-youtube/

Google Project Zero Detects a Record Number of Zero-Day Exploits in 2021

Google Project Zero called 2021 a “record year for in-the-wild 0-days,” as 58 security vulnerabilities were detected and disclosed during the course of the year.

The development marks more than a two-fold jump from the previous maximum when 28 0-day exploits were tracked in 2015. In contrast, only 25 0-day exploits were detected in 2020.

“The large uptick in in-the-wild 0-days in 2021 is due to increased detection and disclosure of these 0-days, rather than simply increased usage of 0-day exploits,” Google Project Zero security researcher Maddie Stone said.

“Attackers are having success using the same bug patterns and exploitation techniques and going after the same attack surfaces,” Stone added.

The tech giant’s in-house security team characterized the exploits as similar to previous and publicly known vulnerabilities, with only two of them markedly different for the technical sophistication and use of logic bugs to escape the sandbox.

Both of them relate to FORCEDENTRY, a zero-click iMessage exploit attributed to the Israeli surveillanceware company NSO Group. “The exploit was an impressive work of art,” Stone said.

The sandbox escape is “notable for using only logic bugs,” Google Project Zero researchers Ian Beer and Samuel Groß explained last month. “The most striking takeaway is the depth of the attack surface reachable from what would hopefully be a fairly constrained sandbox.”

A platform-wise breakdown of these exploits shows that most of the in-the-wild 0-days originated from Chromium (14), followed by Windows (10), Android (7), WebKit/Safari (7), Microsoft Exchange Server (5), iOS/macOS (5), and Internet Explorer (4).

Of the 58 in-the-wild 0-days observed in 2021, 39 were memory corruption vulnerabilities, with the bugs stemming as a consequence of use-after-free (17), out-of-bounds read and write (6), buffer overflow (4), and integer overflow (4) flaws.

It’s also worth noting that 13 out of the 14 Chromium 0-days were memory corruption vulnerabilities, most of which, in turn, were use-after-free vulnerabilities.

What’s more, Google Project Zero pointed out the lack of public examples highlighting in-the-wild exploitation of 0-day flaws in messaging services like WhatsApp, Signal, and Telegram as well as other components, including CPU cores, Wi-Fi chips, and the cloud.

“This leads to the question of whether these 0-days are absent due to lack of detection, lack of disclosure, or both?,” Stone said, adding, “As an industry we’re not making 0-day hard.”

“0-day will be harder when, overall, attackers are not able to use public methods and techniques for developing their 0-day exploits,” forcing them “to start from scratch each time we detect one of their exploits.”

Source :
https://thehackernews.com/2022/04/google-project-zero-detects-record.html

How To Set Up 2-Factor Authentication(2FA)

The security of your WordPress website depends on the systems you implement to protect it and strengthen its security. With the increase in automatic password cracking, your users’ confidential information and access to your site are more at risk than ever.

That’s why it’s so important to further protect your WordPress site by adding two-factor authentication. Because your site is only as secure as your weakest password.

In this article, I’m going to tell you what two-factor authentication or identification is, why it’s so important and how to implement it on your site with easy to use and configure plugins.

Table of Contents

What Is Two-Factor Identification?

Two-factor authentication (2FA) is a type of multi-factor authentication (MFA) and is an additional layer of protection for your website. It is an additional user verification tool, for when someone logs into their account on your WordPress site.

In a standard WordPress setup, a user only has to specify a username and password to log in. Both can be guessed by dictionary attacks or if they are very weak.

When you add two-factor identification to your WordPress site, first, the user will have to enter their username and password as usual, but that’s not the end of it.

Then he will have to provide other information that proves that it is really him who wants to log in. In addition to the password, this information can be one of the following:

  • Something that only the user knows, usually a password or PIN code.
  • Something that only the user has, such as a physical device, a phone or a hardware key.
  • Something to prove that it is you, such as biometric data like a fingerprint or facial scan.

This data can be presented in a variety of different forms, which include:

  • A text message or phone call that gives a unique code to access.
  • Biometric proof such as the phone’s fingerprint sensor.
  • A separate app that users can download that gives them time-based codes that they can enter.

For example, if a user wants to log into a WordPress site, they must first enter their username and password (something only the user knows) . Then, enter two-factor identification, either asking them to verify their identity with a unique code sent by text message or a time-based code in an authentication application (something only the user has).

Or, on a higher security site like a bank might require the username and password (something only the user knows) first. Then, they might require a time-expired PIN code using their card (something only the user has) on a card reader and, as an added benefit, fingerprint scanning if you are logging in via your phone (something to prove you are who you say you are).

Why You Should Add Two-Factor Identification To Your WordPress Site

It’s easier than you think for someone to steal your password. In addition, most of your site users and team members use very weak passwords.

In fact, it probably won’t be news to you that cybercrime is on the rise. In recent years, personal data breaches, data loss and password exposure have been on the rise and are expected to cost the world 5 billion euros annually by 2022.

No matter the size of your website, the rise in automated password hacking means your site could benefit from some additional layers of security.

Enforcing strong WordPress passwords for your users is incredibly important for the security of your website. However, a strong password alone is not enough. One slip of user error could result in a hacker gaining access to your site and could put your customer or user data at risk.

The good news is that this can be stopped by implementing two-factor authentication in WordPress. In fact, even if one of your passwords was breached, the hacker would be stopped at the next stage. Indeed, the second factor would be the last one.

Still not convinced? Here are the benefits of two-factor identification:

  • Your data will be more secure : A weak password will no longer be the reason for unwanted access to your website.
  • You will be protected against fraud: 2FA reduces the likelihood that an attacker can impersonate a user.
  • Your team will have more freedom: Employees can securely access documents and data without putting the information at risk.
  • You will increase your users’ confidence: Your customers will appreciate that you are taking extra steps to ensure that their data is secure.
  • Reduce future costs: If your site is protected, you won’t have to spend money to fix it.

Now that we know the benefits of 2FA for your website and your business, it’s time to install it on your WordPress.

How To Add Two-Factor Authentication To Your WordPress Site

The easiest and fastest way to set up WordPress two-factor authentication is to install a plugin.

But as it is becoming more and more complicated to choose among the many plugins for every need, let’s take a look at the easiest 2FA plugins to implement and configure.

What Do You Need To Use 2FA Double Verification?

The only thing you will need, apart from your WordPress web administrator or editor user account and a plugin that includes the activation of double authentication, is a mobile app such as Google Authenticator or Authy, free for iOS and Android, installed on your mobile or tablet.

2FA With WordFence Login Security

Although you already know that I do not recommend it, if for some reason you already use the WordFence plugin, you should know that regarding the two-factor identification this utility is already included, both within the complete plugin and through a plugin that only offers this specific tool, which is recommended in itself: WordFence Login Security.

No matter what you choose, if it is the complete WordFence plugin or the WordFence Login Security plugin, or any of the following, the steps to activate and start using the double identification are exactly the same.

  1. Activate the dual authentication.
  2. Install a two-factor authentication app on your mobile device (Google Authenticator, Authy, etc.).
  3. With the double authentication app, scan the QR code to add the application (your website) to the app.
  4. Save the backup codes, in case you lose your mobile device to be able to log in without the app.
  5. The next time you log in, in addition to the username/email + password, you will be asked for temporary expiration numbers generated by the authentication app for your application (web).

Then the settings:

  • For which user profiles the double authentication will be mandatory/optional/inactive.
  • Whether to allow the optional 30-day grace period (so that the user can choose not to be prompted every day).
  • Require 2FA for XML-RPC connections (recommended)
  • Also add reCAPTCHA (unnecessary)
  • Enable NTP protocol (recommended)
  • WooCommerce integration (optional)

As you’ll see, it delivers perfectly and works flawlessly, so – although I don’t recommend using Wordfence as a security plugin – the Wordfence Login Security plugin is a good option for adding double authentication to your WordPress site.

2FA With IThemes Security

As you may already know, this plugin was one of my favorites until the summer of 2021 when they decided to totally complicate the interface, forcing you to go through a wizard that made difficult what was once simple.

However, if you still use this plugin for the security of your WordPress website, it also includes the option to enable double identification, which you will find in the wizard.

After activating it, and only after completing the tedious setup wizard, you will be able to configure two-factor authentication.

In the settings you will be able to choose the double verification methods:

  • Mobile App
  • Email
  • Backup ID codes

The most common is to choose the mobile app, but if you opt only for the confirmation email method, or only the mobile app, I always recommend activating the backup codes, which are always a lifesaver.

Once you activate them, on the next login, users will be prompted to initiate the login process by double-identification, using the methods you have activated.

Once activated, it is very simple and intuitive.

What is more complicated is how to define for which users to activate double verification, because for this you will have to configure iThemes Security by creating groups of users and, for each one, decide what you activate and how. This is the part that they complicated so much with the damn wizard, and why I currently do not recommend this security plugin.

2FA With SG Security

Another way to enable two-factor identification in WordPress is via SiteGround Security, currently my favorite security plugin, which can be installed on any WordPress site, even if it is not hosted by SiteGround.

The best part is that, like everything in this security plugin, activating two-factor authentication is just one click.

Once two-factor identification is enabled, the next time an administrator or editor user accesses your WordPress site, they will first have to enter their username and password, and then they will be prompted for the temporary expiration numbers generated by the mobile authentication app, and can check the box to not be asked again for it for 30 days.

After logging in, you will be shown the backup codes, encouraged to save them in a safe place, and you will be able to log in.

Subsequently, each user will have the QR code and security code on their profile settings page, as well as the backup codes, in case they forgot to save them on their first two-factor authentication login.

SG Security’s 2-factor identification works with the main double authentication mobile apps, such as Google Authenticator and Authy, and at the moment it is activated by default for administrators and editors, the user profiles with more access and, consequently, more sensitive, although it is planned to extend it to other profiles.

It does not have as many settings as the other plugins, but it makes up for it with simplicity, something that many users value positively, me among them, especially with these new technologies, which tend to be difficult for most users, so although for advanced configurations it could fall short, it seems to me a more than valid option, and above all simple to implement and configure.

2FA With WP 2FA

The last option I will recommend you is a specific plugin for two-factor identification, and that I consider to be the best among the many that there are just for this utility: WP 2FA.

As soon as you install it and activate it, a configuration wizard will start, totally recommended, that will ask you for the methods you want to activate, which users to require the double identification and a few more settings, as you can see in the following screenshots:

As we have already seen before a bit of the terminology of this technology I will not get repetitive, because basically, the wizard settings are the same as in other plugins, so the screenshots are pretty self-explanatory and easy to understand.

Only the screens will change depending on whether you choose identification via mobile app or email.

With this you would have finished configuring the basic settings, but there is still more, because being a specific plugin it has quite a few additional settings, which are not shown in the initial wizard, that you should review.

For this you have a new item in the administration called WP 2FA, with two additional settings configuration pages:

  • 2FA Policies
  • Settings

2FA Policies

In the 2FA policy you will be able to:

  • Select the available dual-ID methods
  • Choose for which profiles to force double identification
  • Define a grace period or not
  • Whether an external 2FA settings page will be created for the users or the settings will be in the WordPress admin
  • Choose where to redirect users to after setting up their 2FA page
  • Whether users will be able to disable 2FA in their profile or not

WP 2FA Settings

General

In the settings section you will find 3 tabs, namely:

  • Email settings: Here you can customize the texts and more options of the emails sent by the double authentication system.
  • General settings: A few technical settings about how the plugin works, which you will normally not have to modify.
  • White label: You will be happy to know that you can customize the texts that are shown to users in the double authentication process.

As you can see, it is the most complete of all in terms of customization possibilities, there is no possible competition in this regard.

It also has a premium version, payable, but it is not really necessary except for applying double-ID expiration policies, statistics and little else.

What Is The Best 2FA Two-Factor Identification Plugin?

I think it is clear that the most complete is WP 2FA, there is no doubt. The fact that it is a specialized 2FA plugin is noticeable, and beats any of the other options, for customization, for settings, for everything.

Now, should you install a specific 2FA plugin if your security plugin already offers this tool?

Well I think that, unless you NEED some specific functionality offered by the specific plugin and it is not available in your security plugin, I would use the 2FA feature of your security plugin, for not overloading plugin headers in your site, activating more code, having to maintain more plugins, etc. For economy of resources you could say.

Source :
https://wphelp.blog/how-to-set-up-2-factor-authentication2fa/

21 Tips for Using Google Search Console to Effectively Grow Your Website Traffic

Do you want to use Google Search Console to grow your website traffic?

Google Search Console is a powerful free tool created by Google to help website owners understand how Google sees their website. Unfortunately, most businesses don’t know how to effectively use the full power of Google Search Console to increase their website traffic.

In this article, we will show you how to properly use Google Search Console to improve your website SEO and get more visitors.

Using Google Search Console to grow your website

What is Google Search Console?

Google Search Console is a free tool offered by Google to help website owners monitor and maintain their site’s presence in Google search results.

It provides essential marketing data that you need to start tracking from day one. It also alerts you about errors, security issues, and indexing problems that may affect your website’s search rankings.

You can use all this information in your WordPress SEO strategy to increase your website traffic.

The sad part is that most businesses don’t utilize the full power of Google Search Console because most of them think that just adding their website to Google Search Console is enough.

There’s so much more that you can do with the tool.

If you’re not leveraging all of the powerful features that Google Search Console offers, then you’re missing out.

Luckily, we’re here to help. We have created this ultimate Google Search Console guide to help you grow your website like a Pro.

Note: Since this is a comprehensive guide, we have added a table of contents for easier navigation.

Setting up Google Search Console

Fixing Crawling Issues

Growing Your Website

Useful Google Search Console Tools

1. Adding Your Website to Google Search Console

If you haven’t already done so, then you need to go ahead and add your website to Google Search Console. It is really simple and will only take a few minutes.

Simply go to Google Search Console website and click on the Start Now button.

Click the start now button

You’ll be asked to sign in using a Google / Gmail account. Once logged in, you will need to enter your website URL.

Google Search Console offers 2 methods for site verification, including domain name or URL prefix. We recommend using the URL Prefix method as it provides more flexibility.

Choose a property type

Do remember that Google considers HTTP and HTTPS as two different protocols. It also considers https://www.example.com and https://example.com as two different websites.

You’ll need to make sure that you enter the correct URL of your website.

If you are unsure, then simply login to your WordPress admin area and go to Settings » General page. There you will see your website’s URL in the site address field.

Site address

After entering your website address, click on the ‘Continue’ button.

Next, you will be asked to verify ownership of your website. There are several ways to do that, but we will show the HTML tag method because it is the easiest one.

Verify ownership

Click on the HTML tag to expand it and then copy the code inside it.

Next, you’ll need to add the code to your WordPress website so that Google can verify the ownership. However, this requires coding, which can be tricky for beginners.

An easier way of adding Google Search Console to WordPress is by using All in One SEO (AIOSEO). It’s the best SEO tool for WordPress and used by over 3 million users.

First, you’ll need to install and activate the AIOSEO Lite plugin. For more details, see our step by step guide on how to install a WordPress plugin.

Upon activation, you can go to AIOSEO » General Settings page and then click the ‘Webmaster Tools’ tab. Next, select the ‘Google Search Console’ option under Webmaster Tools Verification.

Webmaster tools in AIOSEO

After that, go ahead and enter the code you copied earlier from Google Search Console into the ‘Google Verification Code’ box.

Enter Google verification code

Don’t forget to click on the ‘Save Changes’ button to store your changes.

You can now go back to Google Search Console settings and click on the ‘Verify’ button.

Click the verify button

Google Search Console will now look for the HTML tag in your website code and show you a success message.

Verification success

That’s all. You have successfully added your site to Google Search Console. You can now click on the ‘Go to Property’ link to visit your Google Search Console dashboard.

Note: if Google Search Console cannot verify your website after you have added the code in Insert Headers and Footer plugin, then you need to make sure to clear your WordPress cache and try again.

2. Adding an XML Sitemap

An XML sitemap is a way for website owners to tell search engines about all the pages that exist on their website. It also tells search engines which links on your website are more important than others.

Adding an XML sitemap to your website helps search engines better crawl your website. While it doesn’t give you a boost in search rankings, it can definitely help search engines index your content more efficiently.

The best part is that if you installed All in One SEO (AIOSEO) in the first step, then the plugin automatically adds an XML sitemap to your site.

To see the sitemap, you can head over to All in One SEO » Sitemaps and make sure that the toggle for ‘Enable Sitemap’ is switched on.

Enable sitemap

The plugin will automatically generate an XML sitemap for your website, and you can find it at the URL that looks like this:

http://example.com/sitemap_index.xml

Don’t forget to replace example.com with your own domain name. You can now submit this URL in Google Search Console.

Next, head over to the Google Search Console dashboard and then click on the ‘Sitemaps’ option from the left column. After that, you can paste the URL and click the ‘Submit’ button.

Add a new sitemap

Google Search Console will now check your sitemap and use it to improve your website’s crawling. You can go through our guide on how to add a sitemap page in WordPress for more details.

3. Connect Google Search Console to Google Analytics

Connecting Google Search Console to your Google Analytics account helps you analyze search console data in Google Analytics. This provides you with a new perspective on your top-performing content and keywords.

If you haven’t already done so, then you will need to install Google Analytics on your WordPress website.

We recommend using MonsterInsights for that. It is the best Google Analytics plugin for WordPress, and it will automatically show your top keywords from Google Search Console in your WordPress admin area.

Search console report

To connect Google Search Console to your Analytics account, you need to head over to Google Analytics dashboard for your website. From the bottom left corner of the screen, click on the ‘Admin’ button.

Click the admin settings button

Google Analytics will now switch to the admin view. From here, you need to click on the ‘Property Settings’ section and then click on the ‘Adjust Search Console’ button.

Adjust console

On the next screen, you need to click on the Add button to select your website.

Add search console

Analytics will now take you to the Google Search Console website showing you the list of all websites you have added to the search console. Select the property you want to link to Google Analytics from the dropdown menu.

Select a property

After that, you’ll need to select the Google Analytics property you’d like to connect with Search Console and click the ‘Continue’ button.

Choose associated Analytics property

You’ll now see a popup window showing that you’ve successfully connected Google Analytics and Search Console.

Confirm association between analytics and search console

That’s all. You have successfully connected your Google Search Console data to your Analytics account. You can go back to the Google Analytics Search Console settings page to see the connected Search Console and click the ‘Save’ button.

See search console and analytics connection

You can now view the newly unclocked Search Console reports in your Google Analytics account under Acquisition reports. It also helps unlock keywords not provided in Google Analytics.

Landing page report in analytics

The first report you will find there is the ‘landing pages’ report.

For each landing page, you’ll see the impressions (number of times a page appeared in search results), clicks, click-through rate (CTR), and average position in the search results. Combined with that page’s analytics parameters like bounce rate, sessions, and pages per session.

Clicking a landing page will show you the actual keywords that brought users to this landing page.

Search query report

Next, you can Switch to the ‘Countries’ report, and you will see countries listed in the same order. This helps in creating content and geolocation marketing campaigns for people from different regions.

Countries report in search console

The devices report will show you how your site performed in desktop, mobile, and tablet search results.

Devices report in search console

Next, Queries are the most important of all reports among this data. It shows you the keyword data missing from your Google Analytics reports. You can see which search terms are driving traffic to your site.

Queries report in search console

4. Finding and Fixing Search Indexing Issues

The most helpful feature of Google Search Console is that you can troubleshoot indexing errors.

These errors can affect your search rankings by stopping the search engine from crawling and indexing the pages on your website.

You can easily locate these errors under the Coverage report.

It shows you which pages from your website are indexed by Google and which pages resulted in an error or a warning.

Coverage report

Next, scroll down, and you will see the detailed list of all the errors. Clicking on a link will open the detailed view, where you will also find the link to learn more about the error and how to fix it.

Following are a few common indexing errors you may see:

  • 404 error – This error means that the crawler followed a URL and saw a 404 error.
  • Soft 404 error – This error occurs when the crawler sees a 404 error page, but the page’s status code is sending a 200 (success) message to the browser.
  • Server error – This means that your website server timed out or didn’t respond. This could happen if your website were under heavy traffic, was under maintenance, or unavailable for any other reason.
  • Not followed – This error occurs when Google is not able to follow a content type. This could be a flash, javascript, iframe, or other resources that the crawler cannot fetch.

Now let’s take a look at how to fix some of these crawl errors.

5. Fixing 404 Errors in Google Search Console

First, you need to keep in mind that not all 404 errors are equal. You can safely ignore some of them and only fix those that are actually an error.

For example, if you deleted a blog post and don’t want to redirect users to a newer post, then it is ok to let Google see a 404 error page. Google will eventually deindex that page if it keeps seeing the 404 error.

However, the reason Google wants you to look at those 404 errors is that you may not be aware of them. For example, you accidentally deleted something or forgot to redirect users to the new updated version.

Simply click on the error in the Index Coverage report, and it will show you all the pages displaying that error. Carefully review the pages and if you see a page that shouldn’t be there, then copy its URL and open it in a new browser window.

If you see a 404 error page in your browser, then this means that you need to fix this page.

Now, if it is a page that no longer exists but you have a newer or similar version of it, then you would want to redirect users to that page. See our guide on how to set up redirects in WordPress.

However, sometimes 404 errors may occur due to a misconfiguration in WordPress permalink structure. To fix this, simply visit Settings » Permalinks and then click on the ‘Save Changes’ button without changing anything.

Save changes in permalink

6. Fixing Soft 404 Errors in Google Search Console

Soft 404 errors are a bit tricky to troubleshoot.

Basically, these errors occur when the Google bot sees what looks like a 404 error document instead of content. However, your server is sending a 200 (success) code. Normally, your server sends a 200 success code when a page is displayed without an error or redirect.

Soft 404 errors

To resolve soft 404 errors, go ahead and click on the errors in the Coverage report to view the list of affected pages.

Now, you need to open the page in a new browser tab to see what’s happening. If the page displays correctly, then you can safely ignore the error.

On the other hand, if the page is showing a 404 error document, then you may want to investigate further.

Start by clicking the ‘Submitted URL seems to be a Soft 404’ link from the Coverage report. Next, you can open the link in a new tab to check if it’s not a false alarm.

If the page is valid and you want it to appear in the search results, then simply click the ‘VALIDATE FIX’ button. Google will then recrawl the page and change the status error.

Fix soft 404 error

If the WordPress search function causes the soft 404 errors you are seeing, then the easiest solution is to stop the Google bot from crawling search URLs.

To do that you need to add the following lines to your robots.txt file.

123User-agent: *Disallow: /?s=Disallow: /search/

Usually, Google Bot doesn’t crawl search URLs. However, some spammers might try to spam Google search console reports by linking to search URLs with random strings. This way, they hope you will see their link in your Search Console report and click on it.

If the affected URLs are not searched queries, then you may want to redirect them to a proper page on your site.

7. Fixing Server Error in Google Search Console

Server Errors in Google Search Console are caused by a number of reasons. The most common of them is when your server times out during a crawl, throws an unexpected error or does not appear to be online.

Use the ‘URL inspection’ tool to make sure that the affected URL is working.

If it is working, then you can ignore the error. If you are on a reliable WordPress hosting provider, then most server errors would disappear automatically.

However, if you can confirm the error by visiting the URL, then there are several things you can do to fix it. See our list of most common WordPress errors guide to find a fix for the specific error message you are seeing.

8. Finding and Fixing Security Issues

Security issues

Security issues not only stop Google from crawling your website, but they could also cause a sudden drop in search traffic. Google may temporarily remove affected pages, show a warning to users, and drop a page’s ranking.

Security issues will be highlighted on the overview screen as you login to your Google Search Console account. The most common security issue is websites affected by malware and trojans.

To fix this, see our guide on how to clean a hacked WordPress website for step by step instructions.

For more details, see our article on how How to fix a website after getting de-indexed by Google and ultimate WordPress security guide.

9. Finding Manual Actions and Requesting Review

While security issues are automatically triggered, manual actions are the penalties that are imposed by human staff from the Google Search team after a careful review. If a manual action is taken against your website, then this is pretty significant and can immediately take away all your search traffic.

These manual actions usually occur when a website is involved in illegal activities, spamming, and other fraudulent or fishy activities.

Manual actions

Clicking on the Manual Actions link will show you the actions in your search console report. You will also find detailed information about the issue that triggered it and how to clean it up.

Once you have removed the objectionable content, you can click on the request review button. Your website will now be reviewed and reconsidered by the Google Search team, and they can decide on removing the penalty.

10. Using Google Search Console To Grow Traffic

Now that we have covered the technical bits, let’s get to the fun part of growing your website traffic by utilizing the data available in Search Console.

Google Search Console helps you uncover keyword data, find out your top-performing keywords, and discover hundreds of potential keywords where you can easily rank and get more traffic.

We will also look at links and how to use them to improve search rankings.

Ready? Let’s get started.

11. Mining Keyword Data in Google Search Console

Keywords are the search terms users type in search engines to find information.

Marketers and website owners can optimize their content to target desired keywords and improve their chances of appearing on top in search results.

Previously, keyword data was available in website stats and analytics reports in Google Analytics. However, Google encrypted that information in 2013 when they switched to HTTPS.

As a result, if you try to view search queries in Google Analytics, you’ll most likely see ‘not provided’ keywords. A simple solution to this issue is connecting Google Analytics with Search Console.

You can also view the keyword data in your Google Search Console reports.

It gives you a full view of the keywords your website is ranking for, average position, clicks, and impressions (number of times your site appears for that keyword).

You can see this information in your Google Search Console reports under the ‘Performance’ tab.

Performance report

On the top, you will see a graph of your website’s performance in search results. Below that, you will see the keywords data, which you can filter by position, impression, and click-through rate.

Top keyword in search console

You can sort this data by clicking on any column or using the filter option to narrow down the results.

Filter top keywords

You can also switch to the Pages tab to see the performance of your pages in search results.

Clicking on any page in the list will filter the results for that page. You can then switch to the ‘Queries’ tab to see the keywords that bring the traffic to that particular page.

Now that we have covered how to browse and view this data, let’s see how actually to use this in your SEO and content planning.

12. Finding Low-hanging Keywords That You Can Easily Rank

A lot of your pages may be ranking on page 2 or 3 of Google search results for different keywords. These are the keywords that you can quickly work on to rank higher and get more traffic.

Let’s find out those keywords.

In your Performance report, click on the filter icon and then select the ‘Position’ option. Next, you’ll be looking for keywords where the average position is higher than 7.

Use filter by position

Search Console will now only show the keywords where your site appears on an average position of 7 or higher. Now, click twice on the position column to sort the list in ascending order.

Sort positions

As you scroll down, you will find tons of keywords that rank between 7 and 30. All these keywords are low-hanging fruits where you can easily rank higher.

To view more results, scroll to the bottom and select a higher number for ‘Rows per page.’

Rows per page

When choosing the keywords to work on, you would want to choose keywords based on their number of impressions. Higher impressions mean more search traffic for those keywords.

To do that, you can export the data in CSV format and then open it in spreadsheet software.

download data

Now that you have mined the low-hanging keywords with higher impressions, the question is how do you improve your rankings for those keywords?

Here are some tips to help you improve your rankings for those keywords.

1. Improve the content by adding more useful information

The #1 reason your page isn’t ranking for a keyword is that Google finds other content more valuable. To counter that, you need to review your article or blog post and add helpful content.

Look at the articles ranking on top five positions for that keyword and cover all the information that your article is missing in more detail.

We are not saying that you should just add more text to it. You need to make it more useful, informative, and comprehensive.

2. Evaluate On-page SEO

Use All in One SEO (AIOSEO) to improve the on-page SEO score for that article. It gives practical tips on improving a page by analyzing the content, keyword density, title, readability, links, and more.

AIOSEO page analysis

You can also check out our guide on the SEO audit checklist to boost your rankings.

3. Increase time users spend on that page

Google considers it a success when users click on a search result and spend time viewing it. This means your content needs to be highly engaging and instantly provide users with the information they were looking for.

Here are some crazy simple things you can do to increase user engagement.

  • Use images – users find images much easier to look at than text. Adding more images makes it easier for users to scan the information and keeps them engaged.
  • Use videos – Videos are the most engaging form of content available. Adding video to a page significantly increases the time users spend viewing that page.
  • Make text more readable – Use smaller paragraphs, lots of white space, simpler sentences, and keep your style casual and conversational. All these things make reading easier for users.

For more tips, see this article on how to increase time users spend on your site.

13. Using Link Reports in Google Search Console

Links play an important role in WordPress SEO. Search engines use them as a metric to determine how important a page is and where it should rank in search results.

The Links report in Google Search helps you see your website’s performance in terms of links.

It shows you external links, internal links, top linking sites, and top linking text. More importantly, it shows top linking sites, how often they link to your site, and how many pages they link to.

Let’s see how you can use these reports to get more backlinks, improve internal links, and boost your rankings.

Search console shows third-party websites that have linked to your site in the ‘Top linking sites’ report. You can expand the report by clicking on the ‘More’ link at the bottom.

Top linking sites

If you click on a domain name to expand the report, you will see all the pages they have linked to. Next, click on each page to get the exact URL linked to that particular page.

You can now use this data to get more backlinks for your site. Simply visit the website and see how they have linked to you. After that, see what other content they have where your site can be linked from.

Next, simply reach out to the website via email or contact form on their website.

First, thank them for linking to your article and then politely mention that they may want to include a link to an article of yours.

Now, this direct approach may not always work. In that case, you need to be creative. You can offer them to write a guest post for their blog, leave comments on their articles, follow them on social media, or retweet their articles.

Repeat the process for all important external links on your website. With consistent effort, you can get proper backlinks without spending any money.

15. Improving Internal Links to Boost Rankings

It is harder to get third-party websites to link to your content. However, it is way easier to link to your own content from your own site. This practice is called internal linking.

Internal linking helps search engines understand the context and relationships among different pages on your website. It also helps them understand which pages are important based on how often you have linked to them.

This is why you should make internal linking a habit when writing new content on your website or blog.

Now let’s see how to use the links reports in Search Console to help you build internal links.

In Google Search Console, click on the Links report and then click on the ‘More’ link under the ‘Internal Links’ column. The report shows how often you have linked to other pages on your site.

Go ahead and click the filter icon and then select the ‘Target page’ option.

Filter internal links

Search Console will now show you how many pages are linking to this page. You can now compare it with other pages and see whether pages with more internal links are ranking higher than posts with many internal links.

If that’s the case, then go ahead and start adding internal links to pages that you want to rank higher. Make sure you are only linking to the article when it makes sense. Adding links where they don’t make sense would create a bad user experience.

16. Using Core Web Vitals in Search Console

Did you know that Google now considers your website loading speed as a ranking factor?

In 2020, Google introduced Core Web Vitals that measures how fast your website is and help the search engine measure your site’s user experience.

In Google Search Console, you can view the ‘Core Web Vitals’ report under the Experience menu on your left. It provides a complete report about your site’s speed score for mobile and desktop.

The best part is that you also get recommendations on how to improve your Core Web Vitals score and improve your site’s load time.

Core web vitals report

For more information, please refer to our guide on how to boost WordPress speed and performance.

17. Create Rich Snippets for Your WordPress Pages

Rich snippets or schema markup allows Google to display additional information in its search results. These include star ratings, prices, reviews, and more.

Rich snippets make your page more noticeable in the search results. As a result, you get more clicks and website traffic.

Rich snippet preview

Many WordPress themes automatically include some basic structured data. If you publish recipes, run a reviews site, or an online store, then rich snippets can give your site an SEO boost.

Google Search Console makes it very easy to find pages that are displaying rich snippets. It also shows the type of rich snippets for your website.

You can view them by going to ‘Overview’ and then scrolling down to the ‘Enhancements’ section.

Enhancements section in search console

The real useful part is that the report allows you to quickly look at pages that have errors while displaying rich snippets so that you can fix them.

If you want to learn more about setting up rich snippets, then please see our guide on how to add schema markup in WordPress and WooCommerce.

18. Using Search Console to Improve Mobile Usability

Nearly 63% of all Google searches in the United States come from mobile devices. That’s why Google gives an SEO bump to mobile-friendly websites in the search results.

Google has a Mobile-Friendly test tool that allows you to quickly examine a page. The Mobile Usability report in Search Console tells you how Google sees your entire website in mobile performance.

Mobile usability

If you see errors on this page, then this means that these issues may affect your site’s rankings.

To see the affected pages, you can scroll down to the ‘Details’ section and click on the error.

Mobile errors in search console

Poorly coded WordPress themes or plugins cause most mobile usability issues. The easiest way to fix those issues is by using a better responsive WordPress theme.

19. Use URL Inspection Tool in Search Console

The URL Inspection tool in Google Search Console provides information about a page if it’s on Google search results or not.

You can check the status of a page and also request Google to recrawl a page. To start, simply enter a URL in the top search bar.

URL inspection tool

Google Search Console will then show you the status of the page is indexed by Google. If it’s not indexed, then you’ll see a message saying ‘URL is not on Google.’

You can click the ‘Requesting Indexing’ button and request Google to manually fetch the page from your website.

Besides that, you can scroll down and see more details in the ‘Coverage’ report. It will show information about sitemaps, crawl history, and indexing.

Detailed coverage report

You can also live test a URL and see if there is an indexable version available. If there is, then simply click the ‘Request Indexing’ option.

Live test URL

20. Removing URLs from Google Search

So far, we have focused on using Search Console to get your content indexed and improve rankings in Google Search. However, sometimes you may want to remove content from Google Search as well.

One way to do this is to add a noindex meta tag to the page you want to remove from search results. However, depending on how often Google crawls your website, this could take some time before your page actually disappears from search results.

Search Console’s Remove URL tool allows you to request a URL to be removed from the search results. Simply click on ‘Removals’ under Index in the menu on your left.

Removals requests

Now click on the ‘New Request’ button, and a popup window will appear. Go ahead and enter the URL you want to remove, select whether you want to remove this URL only or with this prefix, and click the ‘Next’ button.

New removal request

Google will now block the URL from its search results for about six months. You can add as many URLs as you want and see them in the Removals section in the Search Console.

21. Adding Users to Access Google Search Console

If you have a marketing team or you have hired someone to help you with SEO, then those users may need access to Google search console data.

Search Console allows you to easily add users and give them access to view all reports without sharing your Google account credentials with them.

To add a new user, simply click on the Settings » Users and permissions option under Property settings and then click on ‘Add User’ button.

Add new user

Next, you need to provide the user’s valid Google account email address and select permission to grant them.

Enter user email

There are two types of permission levels. The full permission level will give them access to everything, including the ability to add new users. Restricted permissions will allow them to view the data but not add new users.

After choosing a permission level, click on the ‘Add’ button to save your changes.

The user you added will now receive an email notification, so they can login and view Google Search Console data for your website.

Helpful Resources

Following helpful resources on WPBeginner will help you further improve your website’s performance in search engines.

  • Ultimate WordPress SEO Guide – Our complete step by step WordPress SEO guide will walk you through complete WordPress SEO setup like a pro.
  • WordPress Performance Guide – Step by step guide to improve your WordPress speed and performance for higher search rankings and better user experience.
  • WordPress Security Guide – Keep your WordPress site secure with this complete WordPress security guide for beginners.
  • Tracking User Engagement – This guide helps you learn how to track user activity on your website and use it to plan your growth strategy.
  • Convert visitors into Customers – If you run an online store, then this guide will show you how to convert search traffic into paying customers.

We hope this article gave you some good tips on using Google Search Console more effectively to grow your site. You may also want to see our guide on the best managed WordPress hosting and how to move WordPress from HTTP to HTTPS.

If you liked this article, then please subscribe to our YouTube Channel for WordPress video tutorials. You can also find us on Twitter and Facebook.

Source :
https://www.wpbeginner.com/beginners-guide/google-search-console-ultimate-guide/

Android’s March 2022 security updates fix three critical bugs

Google has released the March 2022 security updates for Android 10, 11, and 12, addressing three critical severity flaws, one of which affects all devices running the latest version of the mobile OS.

Tracked as CVE-2021-39708, the flaw lies in the Android System component, and it’s an escalation of privilege problem requiring no user interaction or additional execution privileges.

“The most severe of these issues is a critical security vulnerability in the System component that could lead to remote escalation of privilege with no additional execution privileges needed. User interaction is not needed for exploitation.” – mentions Google’s bulletin.

The other two critical flaws are CVE-2021-1942 and CVE-2021-35110, both affecting closed-source components on Qualcomm-based devices.

For a full list of which Qualcomm chipsets are affected by these two vulnerabilities, check out the chipmaker’s security bulletin.

No further technical details have been published for any of the fixed vulnerabilities, as doing so would put users running an older patch level at risk.

Other fixes that land with the March 2022 update are:

  • 1 medium severity escalation of privilege flaw in Android runtime (version 12)
  • 5 high severity escalation of privileges flaws in Android Framework (versions 10, 11, 12)
  • 2 high severity denial of service flaws in Android Framework (version 12)
  • 1 high severity information disclosure in Media Framework (versions 10, 11, 12)
  • 8 high severity escalation of privilege flaws in System (versions 10, 11, 12)
  • 1 high severity information disclosure flaw in System (versions 10, 11, 12)
  • 4 high severity escalation of privilege flaws in Kernel
  • 1 high severity information disclosure in Kernel
  • 3 high severity flaws in MediaTek components
  • 10 high severity flaws in Qualcomm components

As is the case every month, Google has released two patch levels for March 2022, one denoted as “2022-03-01” and one as “2022-03-05”.

The second patch level includes everything in the first set plus fixes for third-party closed source and Kernel components that may not apply to all devices.

As such, your device vendor may choose to push the first level to save on roll-out time, and it won’t necessarily mean that you are left vulnerable to exploitation.

With the only exception being Google’s Pixel line which receives these security updates immediately, all other vendors will need some time to bundle the patches for each of their models, as different hardware configurations require dedicated testing and fine-tuning.

If you are running anything older than Android 10, consider upgrading to a new and actively supported device or flashing your existing with a third-party Android ROM that’s based on a recent AOSP version.

Source :
https://www.bleepingcomputer.com/news/security/androids-march-2022-security-updates-fix-three-critical-bugs/

Urgent Update Released for Zero-Day Chrome & Edge Vulnerability

Updates for both Google Chrome and Microsoft Edge have been released which address the critical CVE-2022-1096 zero-day exploit. If you use either of these web browsers, you should install the update immediately.

What we know so far

The high severity vulnerability — referred to as CVE-2022-1096 — stems from a newly-discovered “type confusion” issue with V8, Google’s open-source JavaScript engine that powers both Google Chrome and Microsoft Edge. The vulnerability, which affects Windows, Mac, and Linux, could allow hackers to hijack people’s web browsers and embed malicious code.

Although it didn’t elaborate, in a short blog post addressing the issue, Google stated that a known exploit currently exists in the wild, although it is not clear how many people have already been affected or how damaging this exploit is.

The vulnerability also affects Microsoft’s Chromium-based web browser Edge in the same way.

What you need to do

You can stay protected from this vulnerability by ensuring your web browser is updated to the latest version. For Google Chrome, this is version 99.0.4844.84 and for Microsoft Edge, it is version 99.0.1150.55.

To check if you have the latest version installed, within one of the web browsers, click the three vertical dots in the top right-hand corner > Settings > About Chrome/About Microsoft Edge. If you don’t already have the latest version installed, you will be presented with the option to download and install it.

How to help the online community

Due to Google remaining tight-lipped about the severity of the known exploit, the level of harm it could cause to potential victims is as yet unclear. To limit the fallout, we all need to do our part in spreading the word — especially when considering how easy it is to install the latest update and guarantee protection. If you found this article helpful and you would like to see that others are protected, please consider sharing this post.

Source :
https://news.trendmicro.com/2022/03/30/urgent-update-chrome-edge-zero-day/

Google Issues Urgent Chrome Update to Patch Actively Exploited Zero-Day Vulnerability

Google on Friday shipped an out-of-band security update to address a high severity vulnerability in its Chrome browser that it said is being actively exploited in the wild.

Tracked as CVE-2022-1096, the zero-day flaw relates to a type confusion vulnerability in the V8 JavaScript engine. An anonymous researcher has been credited with reporting the bug on March 23, 2022.

Type confusion errors, which arise when a resource (e.g., a variable or an object) is accessed using a type that’s incompatible to what was originally initialized, could have serious consequences in languages that are not memory safe like C and C++, enabling a malicious actor to perform out-of-bounds memory access.

“When a memory buffer is accessed using the wrong type, it could read or write memory out of the bounds of the buffer, if the allocated buffer is smaller than the type that the code is attempting to access, leading to a crash and possibly code execution,” MITRE’s Common Weakness Enumeration (CWE) explains.

The tech giant acknowledged it’s “aware that an exploit for CVE-2022-1096 exists in the wild,” but stopped short of sharing additional specifics so as to prevent further exploitation and until a majority of users are updated with a fix.

CVE-2022-1096 is the second zero-day vulnerability addressed by Google in Chrome since the start of the year, the first being CVE-2022-0609, a use-after-free vulnerability in the Animation component that was patched on February 14, 2022.

Earlier this week, Google’s Threat Analysis Group (TAG) disclosed details of a twin campaign staged by North Korean nation-state groups that weaponized the flaw to strike U.S. based organizations spanning news media, IT, cryptocurrency, and fintech industries.

Google Chrome users are highly recommended to update to the latest version 99.0.4844.84 for Windows, Mac, and Linux to mitigate any potential threats. Users of Chromium-based browsers such as Microsoft Edge, Opera, and Vivaldi are also advised to apply the fixes as and when they become available.

Source :
https://thehackernews.com/2022/03/google-issues-urgent-chrome-update-to.html