mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
fix: add av1 to webm
At least AV1 in WebM is supported by Chrome and Firefox.
This commit is contained in:
parent
366a22da71
commit
ba877283a1
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user