What is MIME type "audio/3gpp"?

A MIME type is a string that tells browsers and other tools how to handle a particular kind of file.

audio/3gpp is a content type for audio data encoded in a 3GPP container. It is defined by the 3GPP standards for use in mobile networks.

This MIME type mainly serves efficient audio streaming and storage on mobile devices. It is built to handle low-bitrate audio. That makes it ideal for voice recordings and messaging. It also supports combined audio–video files when needed.

For more technical background on MIME standards, check the IANA Media Types Registry.

Associated file extensions

Usage Examples

HTTP Header

When serving content with this MIME type, set the Content-Type header:


    Content-Type: audio/3gpp    
  

HTML

In HTML, you can specify the MIME type in various elements:


    <a href="file.dat" type="audio/3gpp">Download file</a>    
  

Server-side (Node.js)

Setting the Content-Type header in Node.js:


    const http = require('http');    
    
    http.createServer((req, res) => {    
      res.setHeader('Content-Type', 'audio/3gpp');    
      res.end('Content here');    
    }).listen(3000);    
  

Associated file extensions

FAQs

How do I configure my server to support audio/3gpp files?

To serve these files correctly, you must add the MIME type mapping to your server configuration. For Apache, add AddType audio/3gpp .3gp .3gpp to your .htaccess file. For Nginx, include audio/3gpp 3gp 3gpp; within the types block of your nginx.conf.

What is the difference between audio/3gpp and video/3gpp?

The audio/3gpp MIME type is strictly for files containing only audio streams, often used for voice memos or MMS audio. If the file contains visual data, the correct content type is video/3gpp. Distinguishing between these ensures that media players load the correct interface (e.g., a simple play bar vs. a video window).

Do all web browsers support audio/3gpp playback?

No, support is primarily found on mobile browsers (like Chrome for Android) due to the format's history in cellular networks. Desktop support is inconsistent; Safari and Chrome may play it depending on the underlying OS codecs, but Firefox often requires alternatives. For broad compatibility, consider converting files to audio/mpeg or audio/mp4.

Which file extensions are associated with audio/3gpp?

This MIME type is standard for files ending in .3gp and .3gpp. It is also frequently used for .amr files when they are wrapped in a 3GPP container structure rather than as raw data.

Why would I use audio/3gpp instead of MP3?

audio/3gpp is optimized for low-bandwidth environments and speech compression (using codecs like AMR). It is ideal for mobile applications involving voice recording or legacy MMS messaging where small file size is critical. However, for music or high-fidelity audio on the web, MP3 or AAC are superior choices.

What should I do if my .3gp file downloads instead of playing?

This usually happens if the web server sends the generic application/octet-stream MIME type instead of the specific audio type. Verify your server headers to ensure the Content-Type is set to audio/3gpp. This tells the browser to attempt playback rather than treating the file as a generic binary download.

General FAQ

What is a MIME type?

A MIME (Multipurpose Internet Mail Extensions) type is a standard that indicates the nature and format of a document, file, or assortment of bytes. MIME types are defined and standardized in IETF's RFC 6838.

MIME types are important because they help browsers and servers understand how to process a file. When a browser receives a file from a server, it uses the MIME type to determine how to display or handle the content, whether it's an image to display, a PDF to open in a viewer, or a video to play.

MIME types consist of a type and a subtype, separated by a slash (e.g., text/html, image/jpeg, application/pdf). Some MIME types also include optional parameters.

How do I find the MIME type for a file?

You can check the file extension or use a file identification tool such as file --mime-type on the command line. Many programming languages also provide libraries to detect MIME types.

Why are multiple MIME types listed for one extension?

Different applications and historical conventions may use alternative MIME identifiers for the same kind of file. Showing them all helps ensure compatibility across systems.