From df57f4c009456b61009a1ef450acd94c4c9b5366 Mon Sep 17 00:00:00 2001 From: samwiseg0 Date: Mon, 16 Sep 2019 21:24:57 -0400 Subject: [PATCH 1/2] Remove duplicate nvenc --- plexpy/common.py | 1 - 1 file changed, 1 deletion(-) diff --git a/plexpy/common.py b/plexpy/common.py index 1ef38a5a..6a013ee9 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -172,7 +172,6 @@ HW_DECODERS = [ ] HW_ENCODERS = [ 'qsv', - 'nvenc', 'mf', 'videotoolbox', 'mediacodecndk', From 7e7e5a6be434740213239d65eb49e9418cb1f118 Mon Sep 17 00:00:00 2001 From: samwiseg0 Date: Mon, 16 Sep 2019 21:30:09 -0400 Subject: [PATCH 2/2] Add nvdec for linux decode support. Fixes Tautulli/Tautulli-Issues#193 --- plexpy/common.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/plexpy/common.py b/plexpy/common.py index 6a013ee9..0c31d55f 100644 --- a/plexpy/common.py +++ b/plexpy/common.py @@ -168,7 +168,8 @@ HW_DECODERS = [ 'dxva2', 'videotoolbox', 'mediacodecndk', - 'vaapi' + 'vaapi', + 'nvdec' ] HW_ENCODERS = [ 'qsv',