1
0
Fork 0
peertube/shared/models/server/custom-config.model.ts
Florian CUNY 8dd754c767
Added 144p encoding (#4492)
* Added 144p encoding

Implements https://github.com/Chocobozzz/PeerTube/issues/4428

* Fixed typo in core-utils

* Increased BitPerPixel for 144p

* Disabled 144p by default in test.yaml

* Another try at fixing tests

* Fixed test in video-transcoder (api-3)

* Fixed test in video-imports (api-4)

* Fixed test in live-constraints (api-2)

* Tried to fix tests in api-3 again

* Revert "Tried to fix tests in api-3 again"

This reverts commit 266e1143fa37f333d149c2c2791c7bd33621ac14.

* Fixed test in config.ts (api-2)

* Try to fix test in video-hls.ts (api-3)

* Fixed test in video-transcoder.ts (api-3)

* Fix tests

Co-authored-by: Chocobozzz <me@florianbigard.com>
2021-11-05 10:23:02 +01:00

202 lines
3 KiB
TypeScript

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
import { BroadcastMessageLevel } from './broadcast-message-level.type'
export type ConfigResolutions = {
'144p': boolean
'240p': boolean
'360p': boolean
'480p': boolean
'720p': boolean
'1080p': boolean
'1440p': boolean
'2160p': boolean
}
export interface CustomConfig {
instance: {
name: string
shortDescription: string
description: string
terms: string
codeOfConduct: string
creationReason: string
moderationInformation: string
administrator: string
maintenanceLifetime: string
businessModel: string
hardwareInformation: string
languages: string[]
categories: number[]
isNSFW: boolean
defaultNSFWPolicy: NSFWPolicyType
defaultClientRoute: string
customizations: {
javascript?: string
css?: string
}
}
theme: {
default: string
}
services: {
twitter: {
username: string
whitelisted: boolean
}
}
cache: {
previews: {
size: number
}
captions: {
size: number
}
torrents: {
size: number
}
}
signup: {
enabled: boolean
limit: number
requiresEmailVerification: boolean
minimumAge: number
}
admin: {
email: string
}
contactForm: {
enabled: boolean
}
user: {
videoQuota: number
videoQuotaDaily: number
}
videoChannels: {
maxPerUser: number
}
transcoding: {
enabled: boolean
allowAdditionalExtensions: boolean
allowAudioFiles: boolean
threads: number
concurrency: number
profile: string
resolutions: ConfigResolutions & { '0p': boolean }
webtorrent: {
enabled: boolean
}
hls: {
enabled: boolean
}
}
live: {
enabled: boolean
allowReplay: boolean
maxDuration: number
maxInstanceLives: number
maxUserLives: number
transcoding: {
enabled: boolean
threads: number
profile: string
resolutions: ConfigResolutions
}
}
import: {
videos: {
concurrency: number
http: {
enabled: boolean
}
torrent: {
enabled: boolean
}
}
}
trending: {
videos: {
algorithms: {
enabled: string[]
default: string
}
}
}
autoBlacklist: {
videos: {
ofUsers: {
enabled: boolean
}
}
}
followers: {
instance: {
enabled: boolean
manualApproval: boolean
}
}
followings: {
instance: {
autoFollowBack: {
enabled: boolean
}
autoFollowIndex: {
enabled: boolean
indexUrl: string
}
}
}
broadcastMessage: {
enabled: boolean
message: string
level: BroadcastMessageLevel
dismissable: boolean
}
search: {
remoteUri: {
users: boolean
anonymous: boolean
}
searchIndex: {
enabled: boolean
url: string
disableLocalSearch: boolean
isDefaultSearch: boolean
}
}
}