Add hls support on server

This commit is contained in:
Chocobozzz 2019-01-29 08:37:25 +01:00 committed by Chocobozzz
parent 4348a27d25
commit 0920929696
81 changed files with 2000 additions and 407 deletions

View file

@ -25,11 +25,15 @@ export interface ServerConfig {
signup: {
allowed: boolean,
allowedForCurrentIP: boolean,
allowedForCurrentIP: boolean
requiresEmailVerification: boolean
}
transcoding: {
hls: {
enabled: boolean
}
enabledResolutions: number[]
}
@ -48,7 +52,7 @@ export interface ServerConfig {
file: {
size: {
max: number
},
}
extensions: string[]
}
}