1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-04 02:09:37 +02:00

Add plugin hook on transcoding resolutions building

This commit is contained in:
Chocobozzz 2022-08-02 16:05:44 +02:00
parent 22df69fdec
commit ebb9e53ada
No known key found for this signature in database
GPG key ID: 583A612D890159BE
6 changed files with 51 additions and 6 deletions

View file

@ -93,7 +93,10 @@ export const serverFilterHookObject = {
'filter:html.embed.video-playlist.allowed.result': true,
'filter:job-queue.process.params': true,
'filter:job-queue.process.result': true
'filter:job-queue.process.result': true,
'filter:transcoding.manual.lower-resolutions-to-transcode.result': true,
'filter:transcoding.auto.lower-resolutions-to-transcode.result': true
}
export type ServerFilterHookName = keyof typeof serverFilterHookObject