mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-23 02:27:17 +00:00
fix: add av1 to webm
At least AV1 in WebM is supported by Chrome and Firefox.
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user