diff options
| author | gnattu <gnattu@users.noreply.github.com> | 2026-07-20 18:16:37 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-07-20 12:16:37 +0200 |
| commit | a238d59a0702363671dfcfcac36a1881172200a8 (patch) | |
| tree | 4b5e29e8474ee7393e7bee12037a6580d3e59cc8 /MediaBrowser.MediaEncoding/Encoder | |
| parent | c779488adea6dcbda8a7fd94b861c4245c7d0f37 (diff) | |
Remove libpostproc check for ffmpeg version validation (#17384)
Remove libpostproc check for ffmpeg version validation
Diffstat (limited to 'MediaBrowser.MediaEncoding/Encoder')
| -rw-r--r-- | MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs b/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs index c8670c67cc..1f84b46a2b 100644 --- a/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs +++ b/MediaBrowser.MediaEncoding/Encoder/EncoderValidator.cs @@ -185,8 +185,7 @@ namespace MediaBrowser.MediaEncoding.Encoder { "libavdevice", new Version(58, 13) }, { "libavfilter", new Version(7, 110) }, { "libswscale", new Version(5, 9) }, - { "libswresample", new Version(3, 9) }, - { "libpostproc", new Version(55, 9) } + { "libswresample", new Version(3, 9) } }; private readonly ILogger _logger; |
