aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-08-05 10:36:19 +0200
committerChocobozzz <me@florianbigard.com>2022-08-09 09:18:07 +0200
commit84cae54e7a2595bea0c3ea106a4d111fd11a4ec6 (patch)
tree03fe73edf049ce60df6bbc34dcfb2031c07ea59c /client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
parent7e0f50d6e0c7dc583d40e196c283eb20dc386ae6 (diff)
downloadPeerTube-84cae54e7a2595bea0c3ea106a4d111fd11a4ec6.tar.gz
PeerTube-84cae54e7a2595bea0c3ea106a4d111fd11a4ec6.tar.zst
PeerTube-84cae54e7a2595bea0c3ea106a4d111fd11a4ec6.zip
Add option to not transcode original resolution
Diffstat (limited to 'client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts')
-rw-r--r--client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
index eb892bbfd..ce01f8b59 100644
--- a/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
+++ b/client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts
@@ -175,6 +175,7 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit {
175 profile: null, 175 profile: null,
176 concurrency: CONCURRENCY_VALIDATOR, 176 concurrency: CONCURRENCY_VALIDATOR,
177 resolutions: {}, 177 resolutions: {},
178 alwaysTranscodeOriginalResolution: null,
178 hls: { 179 hls: {
179 enabled: null 180 enabled: null
180 }, 181 },
@@ -197,7 +198,8 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit {
197 enabled: null, 198 enabled: null,
198 threads: TRANSCODING_THREADS_VALIDATOR, 199 threads: TRANSCODING_THREADS_VALIDATOR,
199 profile: null, 200 profile: null,
200 resolutions: {} 201 resolutions: {},
202 alwaysTranscodeOriginalResolution: null
201 } 203 }
202 }, 204 },
203 videoStudio: { 205 videoStudio: {