diff options
author | Chocobozzz <me@florianbigard.com> | 2019-11-15 15:06:03 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-11-25 10:59:43 +0100 |
commit | d7a25329f9e607894d29ab342b9cb66638b56dc0 (patch) | |
tree | 6cd6bc4f2689f78944238b313c93427423a932ac /shared/models/server/custom-config.model.ts | |
parent | 14981d7331da3f63fe6cfaf020ccb7c910006eaf (diff) | |
download | PeerTube-d7a25329f9e607894d29ab342b9cb66638b56dc0.tar.gz PeerTube-d7a25329f9e607894d29ab342b9cb66638b56dc0.tar.zst PeerTube-d7a25329f9e607894d29ab342b9cb66638b56dc0.zip |
Add ability to disable webtorrent
In favour of HLS
Diffstat (limited to 'shared/models/server/custom-config.model.ts')
-rw-r--r-- | shared/models/server/custom-config.model.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index c9957f825..97972b759 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts | |||
@@ -69,8 +69,10 @@ export interface CustomConfig { | |||
69 | 69 | ||
70 | transcoding: { | 70 | transcoding: { |
71 | enabled: boolean | 71 | enabled: boolean |
72 | |||
72 | allowAdditionalExtensions: boolean | 73 | allowAdditionalExtensions: boolean |
73 | allowAudioFiles: boolean | 74 | allowAudioFiles: boolean |
75 | |||
74 | threads: number | 76 | threads: number |
75 | resolutions: { | 77 | resolutions: { |
76 | '240p': boolean | 78 | '240p': boolean |
@@ -80,6 +82,11 @@ export interface CustomConfig { | |||
80 | '1080p': boolean | 82 | '1080p': boolean |
81 | '2160p': boolean | 83 | '2160p': boolean |
82 | } | 84 | } |
85 | |||
86 | webtorrent: { | ||
87 | enabled: boolean | ||
88 | } | ||
89 | |||
83 | hls: { | 90 | hls: { |
84 | enabled: boolean | 91 | enabled: boolean |
85 | } | 92 | } |