mirror of
https://github.com/gabehf/Tdarr_Plugins.git
synced 2026-03-10 07:50:29 -07:00
add rkmpp support
This commit is contained in:
parent
7b3f9ee4d0
commit
8becfc4118
6 changed files with 51 additions and 0 deletions
|
|
@ -140,6 +140,7 @@ const details = (): IpluginDetails => ({
|
|||
options: [
|
||||
'auto',
|
||||
'nvenc',
|
||||
'rkmpp',
|
||||
'qsv',
|
||||
'vaapi',
|
||||
'videotoolbox',
|
||||
|
|
|
|||
|
|
@ -203,6 +203,16 @@ export const getEncoder = async ({
|
|||
outputArgs: [],
|
||||
filter: '',
|
||||
},
|
||||
{
|
||||
encoder: 'hevc_rkmpp',
|
||||
enabled: false,
|
||||
inputArgs: [
|
||||
'-hwaccel',
|
||||
'rkmpp',
|
||||
],
|
||||
outputArgs: [],
|
||||
filter: '',
|
||||
},
|
||||
{
|
||||
encoder: 'hevc_amf',
|
||||
enabled: false,
|
||||
|
|
@ -275,6 +285,16 @@ export const getEncoder = async ({
|
|||
outputArgs: [],
|
||||
filter: '',
|
||||
},
|
||||
{
|
||||
encoder: 'h264_rkmpp',
|
||||
enabled: false,
|
||||
inputArgs: [
|
||||
'-hwaccel',
|
||||
'rkmpp',
|
||||
],
|
||||
outputArgs: [],
|
||||
filter: '',
|
||||
},
|
||||
{
|
||||
encoder: 'h264_videotoolbox',
|
||||
enabled: false,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue