You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1.4 KiB
TypeScript
46 lines
1.4 KiB
TypeScript
import { logger } from '@server/helpers/logger.js'
|
|||
import { CONFIG } from '@server/initializers/config.js'
|
|||
import { FFMPEG_NICE } from '@server/initializers/constants.js'
|
|||
import { FFmpegCommandWrapperOptions } from '@peertube/peertube-ffmpeg'
|
|||
import { AvailableEncoders } from '@peertube/peertube-models'
|
|||
|
|||
type CommandType = 'live' | 'vod' | 'thumbnail'
|
|||
|
|||
export function getFFmpegCommandWrapperOptions (type: CommandType, availableEncoders?: AvailableEncoders): FFmpegCommandWrapperOptions {
|
|||
return {
|
|||
availableEncoders,
|
|||
profile: getProfile(type),
|
|||
|
|||
niceness: FFMPEG_NICE[type.toUpperCase()],
|
|||
tmpDirectory: CONFIG.STORAGE.TMP_DIR,
|
|||
threads: getThreads(type),
|
|||
|
|||
logger: {
|
|||
debug: logger.debug.bind(logger),
|
|||
info: logger.info.bind(logger),
|
|||
warn: logger.warn.bind(logger),
|
|||
error: logger.error.bind(logger)
|
|||
},
|
|||
lTags: { tags: [ 'ffmpeg' ] }
|
|||
}
|
|||
}
|
|||
|
|||
// ---------------------------------------------------------------------------
|
|||
// Private
|
|||
// ---------------------------------------------------------------------------
|
|||
|
|||
function getThreads (type: CommandType) {
|
|||
if (type === 'live') return CONFIG.LIVE.TRANSCODING.THREADS
|
|||
if (type === 'vod') return CONFIG.TRANSCODING.THREADS
|
|||
|
|||
// Auto
|
|||
return 0
|
|||
}
|
|||
|
|||
function getProfile (type: CommandType) {
|
|||
if (type === 'live') return CONFIG.LIVE.TRANSCODING.PROFILE
|
|||
if (type === 'vod') return CONFIG.TRANSCODING.PROFILE
|
|||
|
|||
return undefined
|
|||
}
|