mirror of
https://github.com/immich-app/immich
synced 2026-08-15 13:03:57 +00:00
added a configuration option to select the dri node in transcoding (#6376)
* added a configuration option to select the dri node in transcoding * chore: open api * refactor: get hawrdware device --------- Co-authored-by: Jason Rasmussen <jrasm91@gmail.com>
This commit is contained in:
parent
68f8525eb1
commit
76f8d030ce
12 changed files with 140 additions and 4 deletions
|
|
@ -9422,6 +9422,9 @@
|
|||
"npl": {
|
||||
"type": "integer"
|
||||
},
|
||||
"preferredHwDevice": {
|
||||
"type": "string"
|
||||
},
|
||||
"preset": {
|
||||
"type": "string"
|
||||
},
|
||||
|
|
@ -9463,6 +9466,7 @@
|
|||
"gopSize",
|
||||
"maxBitrate",
|
||||
"npl",
|
||||
"preferredHwDevice",
|
||||
"preset",
|
||||
"refs",
|
||||
"targetAudioCodec",
|
||||
|
|
|
|||
6
open-api/typescript-sdk/client/api.ts
generated
6
open-api/typescript-sdk/client/api.ts
generated
|
|
@ -3712,6 +3712,12 @@ export interface SystemConfigFFmpegDto {
|
|||
* @memberof SystemConfigFFmpegDto
|
||||
*/
|
||||
'npl': number;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
* @memberof SystemConfigFFmpegDto
|
||||
*/
|
||||
'preferredHwDevice': string;
|
||||
/**
|
||||
*
|
||||
* @type {string}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue