diff --git a/docs/video/AV1.mdx b/docs/video/AV1.mdx index 43294dfe9..180ae6743 100644 --- a/docs/video/AV1.mdx +++ b/docs/video/AV1.mdx @@ -11,4 +11,37 @@ This section is in need of contributions. If you believe you can help, please se AV1 is a royalty-free video compression format designed to succeed [VP9](../video/VP9.mdx). It presently competes with [VP9](../video/VP9.mdx), [VVC](../video/VVC.mdx), and [HEVC](../video/HEVC.mdx). AV1 is computationally more complex than VP9, but is fast to decode due to the mature and efficient dav1d AV1 decoder. AV1 hardware accelerated decoding is also available on a variety of different consumer hardware devices, all of which are enumerated [on Wikipedia](https://en.wikipedia.org/wiki/AV1#Hardware). Standout entries include modern Intel, AMD, & Nvidia integrated & discrete GPUs, Google's Tensor SoC powering the Pixel line, Apple's A17 Pro in the iPhone 15 Pro series, and modern Mediatek & Qualcomm chips. YouTube is currently in the process of transitioning their videos to use AV1. -There are a number of viable AV1 encoding solutions available today. The three best, most ubiquitous, and free implementations are [aomenc](../encoders/aomenc.mdx), [SVT-AV1](../encoders/SVT-AV1.mdx), & [rav1e](../encoders/rav1e.mdx). \ No newline at end of file +There are a number of viable AV1 encoding solutions available today. The three best, most ubiquitous, and free implementations are [aomenc](../encoders/aomenc.mdx), [SVT-AV1](../encoders/SVT-AV1.mdx), & [rav1e](../encoders/rav1e.mdx). + +### Codec String + +You may come across a codec string like +``` +av01.0.09M.08 +``` +Let's break it down + +| component | description | +|-----------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| `av01` | Codec string for AV1 | +| `0` | Profile number
Profile Number | Description |
---|---|
0 | main profile, supports YUV 4:2:0 chroma subsampling and 8 or 10 bits of color depth |
1 | high, adds support for 4:4:4 color |
2 | professional, adds 4:2:2 color and 12 bit depth |