]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - server/lib/uploadx.ts
Prevent HLS transcoding after webtorrent transcoding
[github/Chocobozzz/PeerTube.git] / server / lib / uploadx.ts
1 import express from 'express'
2 import { getResumableUploadPath } from '@server/helpers/upload'
3 import { Uploadx } from '@uploadx/core'
4
5 const uploadx = new Uploadx({
6 directory: getResumableUploadPath(),
7 // Could be big with thumbnails/previews
8 maxMetadataSize: '10MB',
9 userIdentifier: (_, res: express.Response) => {
10 if (!res.locals.oauth) return undefined
11
12 return res.locals.oauth.token.user.id + ''
13 }
14 })
15
16 export {
17 uploadx
18 }