-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'milestone-48-vsdk-web-4-19-2' of https://github.com/Ago…
…raIO/Doc-Source-Private into staging
- Loading branch information
Showing
5 changed files
with
45 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,33 @@ See [Supported platforms](../reference/supported-platforms). | |
|
||
See [Known issues](known-issues). | ||
|
||
### v4.19.2 | ||
|
||
v4.19.2 was released on October 20, 2023. | ||
|
||
#### Improvements | ||
|
||
**VP9 codec (GA)** | ||
|
||
This release advances VP9 from Beta to General Availability (GA) and introduces the following enhancements: | ||
|
||
- Updated browser compatibility: VP9 now supports Safari 16.0 and later versions on both desktop and mobile platforms. | ||
- Automatic fallback to VP8 for older browsers: If any user in a channel uses a browser version below the [specified compatibility threshold](#vp9-codec-beta), all VP9-encoded video streams in that channel will automatically transition to VP8. | ||
|
||
Test results show that VP9 provides twice the quality of VP8 at equivalent bitrates. | ||
|
||
**Dynamic resolution adjustment on Safari** | ||
|
||
Safari has a known issue where it does not automatically reduce video encoding resolution under poor network conditions or reduced video frame rates, potentially leading to blurry video. To ensure user experience, this release adds the `"720p_auto"` preset to the video encoder configurations. This preset guarantees automatic adjustment of the video encoding resolution on Safari. | ||
|
||
After upgrading to this version, if you are using a 720p video profile, Agora recommends switching to the `"720p_auto"` preset and setting the encoding format to `"vp9"` for optimal results. | ||
|
||
#### API changes | ||
|
||
**Added** | ||
|
||
- `"720p_auto"` to `VideoEncoderConfigurationPreset` | ||
|
||
### v4.19.1 | ||
|
||
v4.19.1 was released on October 11, 2023. | ||
|
@@ -447,15 +474,15 @@ Agora enables channel hosts to control whether the audio streams being published | |
|
||
To enable this function, contact [[email protected]](mailto:[email protected]). | ||
|
||
##### VP9 codec (Beta) | ||
##### VP9 codec | ||
|
||
Video SDK for Web v4.15.0 adds support for the VP9 codec in the following browsers: | ||
|
||
| | Supported browsers<sup>①</sup> | | ||
| ------- | ------------------------------------------------------------ | | ||
| Desktop | <li>Chrome 65 or later</li><li>Firefox 69 or later</li><li>Edge 79 or later</li> | | ||
| Android | <li>Chrome 68 or later</li><li>Wechat v8.0.6 or later </li><li>Other apps that use WKWebView: WebView v55.0.28883.91 or later</li> | | ||
| iOS | N/A | | ||
| Desktop | <li>Chrome 65 or later</li><li>Firefox 69 or later</li><li>Edge 79 or later</li> <li>Safari 16 or later</li>| | ||
| Android | <li>Chrome 68 or later</li><li>Wechat v8.0.6 or later </li><li>Other apps that use WKWebView: WebView v65.0.3325.109 or later</li> | | ||
| iOS | Safari 16 or later | | ||
|
||
<div class="alert info">① To ensure the best user experience, best practice is to use the latest version of the browsers listed above.</div> | ||
|
||
|