diff options
Diffstat (limited to 'server/initializers/config.ts')
-rw-r--r-- | server/initializers/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/initializers/config.ts b/server/initializers/config.ts index 705223b0a..0f58dc1d4 100644 --- a/server/initializers/config.ts +++ b/server/initializers/config.ts | |||
@@ -189,6 +189,7 @@ const CONFIG = { | |||
189 | get '480p' () { return config.get<boolean>('transcoding.resolutions.480p') }, | 189 | get '480p' () { return config.get<boolean>('transcoding.resolutions.480p') }, |
190 | get '720p' () { return config.get<boolean>('transcoding.resolutions.720p') }, | 190 | get '720p' () { return config.get<boolean>('transcoding.resolutions.720p') }, |
191 | get '1080p' () { return config.get<boolean>('transcoding.resolutions.1080p') }, | 191 | get '1080p' () { return config.get<boolean>('transcoding.resolutions.1080p') }, |
192 | get '1440p' () { return config.get<boolean>('transcoding.resolutions.1440p') }, | ||
192 | get '2160p' () { return config.get<boolean>('transcoding.resolutions.2160p') } | 193 | get '2160p' () { return config.get<boolean>('transcoding.resolutions.2160p') } |
193 | }, | 194 | }, |
194 | HLS: { | 195 | HLS: { |
@@ -221,6 +222,7 @@ const CONFIG = { | |||
221 | get '480p' () { return config.get<boolean>('live.transcoding.resolutions.480p') }, | 222 | get '480p' () { return config.get<boolean>('live.transcoding.resolutions.480p') }, |
222 | get '720p' () { return config.get<boolean>('live.transcoding.resolutions.720p') }, | 223 | get '720p' () { return config.get<boolean>('live.transcoding.resolutions.720p') }, |
223 | get '1080p' () { return config.get<boolean>('live.transcoding.resolutions.1080p') }, | 224 | get '1080p' () { return config.get<boolean>('live.transcoding.resolutions.1080p') }, |
225 | get '1440p' () { return config.get<boolean>('live.transcoding.resolutions.1440p') }, | ||
224 | get '2160p' () { return config.get<boolean>('live.transcoding.resolutions.2160p') } | 226 | get '2160p' () { return config.get<boolean>('live.transcoding.resolutions.2160p') } |
225 | } | 227 | } |
226 | } | 228 | } |