fix: add av1 to webm

At least AV1 in WebM is supported by Chrome and Firefox.
This commit is contained in:
Dmitry Lyzo 2024-01-18 08:01:06 +03:00 committed by GitHub
parent 366a22da71
commit ba877283a1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -30,7 +30,7 @@ namespace MediaBrowser.MediaEncoding.Probing
private const string ArtistReplaceValue = " | ";
private readonly char[] _nameDelimiters = { '/', '|', ';', '\\' };
private readonly string[] _webmVideoCodecs = { "vp8", "vp9" };
private readonly string[] _webmVideoCodecs = { "av1", "vp8", "vp9" };
private readonly string[] _webmAudioCodecs = { "opus", "vorbis" };
private readonly ILogger _logger;