feat(server): option to transcode to original resolution (#2709)

* option to transcode to original resolution

* changed value for target res setting

* updated test, clarified scaling condition
This commit is contained in:
Mert 2023-06-10 00:15:12 -04:00 committed by GitHub
parent e3694695ae
commit 9cdec62918
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 25 additions and 6 deletions

View file

@ -143,7 +143,8 @@
{ value: '1440', text: '1440p' },
{ value: '1080', text: '1080p' },
{ value: '720', text: '720p' },
{ value: '480', text: '480p' }
{ value: '480', text: '480p' },
{ value: 'original', text: 'original' }
]}
name="resolution"
isEdited={!(ffmpegConfig.targetResolution == savedConfig.targetResolution)}