diff options
author | Jorropo <jorropo.pgm@gmail.com> | 2018-07-27 20:41:05 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2018-08-01 10:57:13 +0200 |
commit | 991feec9a3f371e28274884f7635dc2e57dca284 (patch) | |
tree | ec1e0ae9b58aa262a08f5737738bab0c40e7b479 /client | |
parent | 19ca8ca93975d99c16ab94c1526a34be74f63b95 (diff) | |
download | PeerTube-991feec9a3f371e28274884f7635dc2e57dca284.tar.gz PeerTube-991feec9a3f371e28274884f7635dc2e57dca284.tar.zst PeerTube-991feec9a3f371e28274884f7635dc2e57dca284.zip |
ffmpeg auto thread
Set thread count to 0 and ffmpeg will chose automaticaly
Diffstat (limited to 'client')
-rw-r--r-- | client/src/app/+admin/config/edit-custom-config/edit-custom-config.component.ts | 1 |
1 files changed, 1 insertions, 0 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 c77249a02..2edfb267e 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 | |||
@@ -29,6 +29,7 @@ export class EditCustomConfigComponent extends FormReactive implements OnInit { | |||
29 | { value: 50 * 1024 * 1024 * 1024, label: '50GB' } | 29 | { value: 50 * 1024 * 1024 * 1024, label: '50GB' } |
30 | ] | 30 | ] |
31 | transcodingThreadOptions = [ | 31 | transcodingThreadOptions = [ |
32 | { value: 0, label: 'auto (not optimized)' }, | ||
32 | { value: 1, label: '1' }, | 33 | { value: 1, label: '1' }, |
33 | { value: 2, label: '2' }, | 34 | { value: 2, label: '2' }, |
34 | { value: 4, label: '4' }, | 35 | { value: 4, label: '4' }, |