diff --git a/docs/general/clients/codec-support.md b/docs/general/clients/codec-support.md
index 27c7c69d..86bf9dd7 100644
--- a/docs/general/clients/codec-support.md
+++ b/docs/general/clients/codec-support.md
@@ -21,8 +21,8 @@ The goal is to Direct Play all media. This means the container, video, audio and
| [H.264 10Bit](https://caniuse.com/#feat=mpeg4 'H264 Browser Support Reference') | ✅ | ✅ | ❌ | ❌ | ✅ | ✅ | ❌ | ✅ | ❌ | ✅ | ✅ |
| [H.265 8Bit](https://caniuse.com/#feat=hevc 'HEVC Browser Support Reference') | 🔶8 | ✅7 | ❌ | 🔶1 | 🔶2 | ✅5 | 🔶1 | ✅6 | 🔶9 | ✅ | ✅ |
| [H.265 10Bit](https://caniuse.com/#feat=hevc 'HEVC Browser Support Reference') | 🔶8 | ✅7 | ❌ | 🔶1 | 🔶2 | 🔶5 | 🔶1 | ✅6 | 🔶9 | ✅ | ✅ |
-| [VP9](https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Video_codecs#VP9 'V9 Browser Support Reference') | ✅ | ✅ | ✅ | ❌ | ✅3 | 🔶3 | ❌ | ❌ | ✅ | ✅ | ✅ |
-| [AV1](https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Video_codecs#AV1 'AV1 Browser Support Reference') | ✅ | ✅ | ✅ | ❌ | ✅ | 🔶4 | ❌ | ❌ | ✅ | ✅ | ✅ |
+| [VP9](https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Video_codecs#VP9 'V9 Browser Support Reference') | ✅ | ✅ | ✅ | ❌ | ✅3 | 🔶3 | ✅10| ❌ | ✅ | ✅ | ✅ |
+| [AV1](https://developer.mozilla.org/en-US/docs/Web/Media/Formats/Video_codecs#AV1 'AV1 Browser Support Reference') | ✅ | ✅ | ✅ | ❌ | ✅ | 🔶4 | ❌ | 🔶11 | ✅ | ✅ | ✅ |
1HEVC is only supported in MP4, M4V, and MOV containers.
@@ -41,6 +41,8 @@ The goal is to Direct Play all media. This means the container, video, audio and
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:](https://en.wikipedia.org/wiki/MPEG-4#MPEG-4_Parts)
@@ -162,7 +164,7 @@ If the container is unsupported, this will result in remuxing. The video and aud
| :-------------------------------------------------------------------: | :----: | :--: | :-----: | :----: | :-----: | :--------: | :--: | :--: |
| [MP4](https://en.wikipedia.org/wiki/MPEG-4_Part_14)1 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [MKV](https://en.wikipedia.org/wiki/Matroska)2, 3 | ❌ | ✅ | ❌ | ❌ | ✅ | ✅ | ✅ | ✅ |
-| [WebM](https://en.wikipedia.org/wiki/WebM)3, 5 | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | ✅ |
+| [WebM](https://en.wikipedia.org/wiki/WebM)3, 5, 6 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [TS](https://en.wikipedia.org/wiki/MPEG_transport_stream)4 | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ | ✅ |
| [OGG](https://en.wikipedia.org/wiki/Ogg)5 | ✅ | ✅ | ✅ | ❌ | ✅ | ✅ | ✅ | ✅ |
@@ -175,3 +177,5 @@ If the container is unsupported, this will result in remuxing. The video and aud
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.