Skip to main content

Codec Tables

The goal is to Direct Play all media. This means the container, video, audio and subtitles are all compatible with the client. If the media is incompatible for any reason, Jellyfin will use FFmpeg to convert the media to a format that the client can process. Direct Stream will occur if the audio, container or subtitles happen to not be supported. If the video codec is unsupported, this will result in video transcoding. Subtitles can be tricky because they can cause Direct Stream (subtitles are remuxed) or video transcoding (burning in subtitles) to occur. This is the most intensive CPU component of transcoding. Decoding is less intensive than encoding.

Video Compatibility

Breakdown of video codecs.

Test your browser's compatibility for any codec profile.

Sorted by efficency (excluding bit depth)ChromeEdgeFirefoxSafariAndroidAndroid TViOSSwiftFin (iOS)RokuKodiDesktop
MPEG-4 Part 2/SP
MPEG-4 Part 2/ASP
H.264 8Bit
H.264 10Bit
H.265 8Bit🔶87🔶1🔶25🔶16🔶9
H.265 10Bit🔶87🔶1🔶2🔶5🔶16🔶9
VP9103🔶3
AV1🔶11🔶4

1HEVC is only supported in MP4, M4V, and MOV containers.


2Android playback is currently broken. Client reports that HEVC is supported and attempts to Direct Stream.


3May be (partially) dependent on Hardware support (can be compensated with CPU decoding on Android). Most new Android phones in the higher price range and many "4K" Android TV devices have VP9 hardware decoding support. Refer to you manufacturer for supported codecs.


4Needs atleast Android TV 10.


5As of version 0.12, HEVC is enabled on all devices running Android 5.0+, but early generations of the Amazon Fire may not work yet. 10Bit may be supported depending on your device. Before Client 0.12, HEVC support was enabled on specific devices.


6HEVC decoding is supported on Apple devices with the A8X chip or newer and at least iOS 14.


7HEVC decoding is only supported on Windows 10 with the HEVC Video Extension from the Microsoft store.


8Chromium 104 does support HEVC decoding when launched with --enable-features=PlatformHEVCDecoderSupport argument. For more informations please look at enable-chromium-hevc-hardware-decoding.


9HEVC decoding is only supported on 4K devices.


10VP9 decoding on Safari requires at least Safari 14.


11AV1 decoding is only available on devices with A17 or M3 series chips or newer and requires at least Safari 17.

Format Cheatsheet:

MPEG-2
Part 2
MPEG-4
Part-2
1
MPEG-4
Part-10
MPEG-4
Part-14
MPEG-H
Part 2
H.262MPEG-4 SP/ASPH.264MP4 Container2H.265
MPEG-2 VideoDivXMPEG-4 AVCHEVC
DVD-VideoDX50
1 MPEG-4 Part-2 vs Part-10
2 MPEG-4 Part 17: MP4TT Subtitles

Audio Compatibility

If the audio codec is unsupported or incompatible (such as playing a 5.1 channel stream on a stereo device), the audio codec must be transcoded. This is not nearly as intensive as video transcoding.

ChromeEdgeFirefoxSafariAndroidAndroid TViOSSwiftFin (iOS)RokuKodiDesktop
FLAC
MP3🔶1🔶
AAC
AC3
EAC32
VORBIS3
DTS46
OPUS🔶5🔶5
ALAC

Format Cheatsheet:

MPEG-1MPEG-2
MP2 (layer 2)AAC (Part 7)
MP3 (layer 3)

1MP3 Mono is incorrectly reported as unsupported and will transcode to AAC.


2Only EAC3 2.0 has been tested.


3OGG containers are not supported and will cause VORBIS to convert.


4Only DTS Mono has been tested.


5Safari only supports opus in .caf files


6Supported via passthrough on all devices. Native support for AC3 & E-AC3 on Roku TVs & Ultra.

ATSC Standard for AC-3 and EAC-3.

Subtitle Compatibility

Subtitles can be a subtle issue for transcoding. Containers have a limited number of subtitles that are supported. If subtitles need to be transcoded, it will happen one of two ways: they can be converted into another format that is supported, or burned into the video due to the subtitle transcoding not being supported. Burning in subtitles is the most intensive method of transcoding. This is due to two transcodings happening at once; applying the subtitle layer on top of the video layer.

Here is a breakdown of common subtitle formats.

FormatTSMP4MKVAVI
SubRip Text (SRT)Text🔶🔶
WebVTT (VTT)1Text🔶
ASS/SSAFormatted Text🔶
VobSub2Picture🔶
MP4TT/TXTTXML
PGSSUBPicture
EIA-608/7083Embedded

1VTT are supported in an HLS Stream.


2DVB-SUB (SUB + IDX) is another name for VobSub files.


3EIA-608/708 subtitles are embedded in private channels (channel 21) in a MPEG video codec. EIA-608 are standard CC subtitles with the black bar background, while EIA-708 are typically SDH.

Types of Subtitles

There are many variations of subtitles. Closed, open, burned-in, forced, SDH, and CC are among the common types of subtitles. The format (such as SubRIP or VobSUB) does not matter for the type of subtitle.

Closed Subtitles

This is the generic name for subtitles that can be turned on or off. This can be Forced, SDH, CC or normal subtitles.

Burned-in

Open subtitles (also known as burned-in subtitles) are subtitles that have been permanently placed in the video and cannot be turned off. Open subtitles are the most common type of subtitles, where the subtitles are part of the video stream and cannot be toggled on or off.

SDH and Closed Captioning

SDH and CC are subtitles for the Deaf and Hard of Hearing. They include extra content such as background noises. SDH and CC are not defined by a specific type of subtitle, just by their intent. If using an OTA Tuner and DVR, the subtitles will be embedded into the video and transcoding them before extracting the subtitles will destroy the subtitles.

Forced

"Forced subtitles are common on movies and only provide subtitles when the characters speak a foreign or alien language, or a sign, flag, or other text in a scene is not translated in the localization and dubbing process. In some cases, foreign dialogue may be left untranslated if the movie is meant to be seen from the point of view of a particular character who does not speak the language in question." - Wikipedia

Extracting Subtitles

To extract subtitles, the following commands can be used. The section 0:s:0 means the first subtitle, so 0:s:1 would be the second subtitle.

SSA/ASS Subtitles

ffmpeg -dump_attachment:t "" -i file.mkv -map 0:s:1 -c:s ass extracted-subtitle.ass

Recorded OTA Content

Content recorded OTA will typically have subtitles embedded into the video codec itself. These subtitles are typically EIA-608 for analog and EIA-708 for digital.

ffmpeg -f lavfi -i "movie=Ronin (1998).ts[out+subcc]" -map 0:1  "Ronin (1998).srt"

Fonts

Text-based subtitle formats require fonts to render properly. Please refer to Fonts for how to install them.

Container Compatibility

If the container is unsupported, this will result in remuxing. The video and audio codec will remain intact but wrapped in a supported container. This is the least intensive process. Most video containers will be remuxed to use the HLS streaming protocol and TS containers. Remuxing shouldn't be a concern even for an RPi3.

ChromeEdgeFirefoxSafariAndroidAndroid TVKodiRoku
MP41
MKV2, 3
WebM3, 5, 6
TS4
OGG5

1MP4 containers are one of the few containers that will not remux.


2MKV containers can hold nearly any codec, but are not compatible with streaming in Firefox and will remux.


3MKV containers are improperly labeled as WebM in Firefox during playback.


4TS is one of the primary containers for streaming for Jellyfin.


5WebM and OGG have limited codec support (by design), refer to this for WebM and this for OGG.


6WebM on Safari requires at least Safari 14.