mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
feat(server): enable AV1 encoding for NVENC (#8959)
allow av1 for nvenc
This commit is contained in:
parent
2dd7c13b88
commit
fd4514711f
1 changed files with 1 additions and 1 deletions
|
|
@ -436,7 +436,7 @@ export class AV1Config extends BaseConfig {
|
||||||
|
|
||||||
export class NVENCConfig extends BaseHWConfig {
|
export class NVENCConfig extends BaseHWConfig {
|
||||||
getSupportedCodecs() {
|
getSupportedCodecs() {
|
||||||
return [VideoCodec.H264, VideoCodec.HEVC];
|
return [VideoCodec.H264, VideoCodec.HEVC, VideoCodec.AV1];
|
||||||
}
|
}
|
||||||
|
|
||||||
getBaseInputOptions() {
|
getBaseInputOptions() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue