2023-05-04 09:29:34 -04:00
|
|
|
import { VideoStudioTaskPayload } from '../server'
|
|
|
|
|
2023-04-21 08:55:10 -04:00
|
|
|
export type RunnerJobVODPayload =
|
|
|
|
RunnerJobVODWebVideoTranscodingPayload |
|
|
|
|
RunnerJobVODHLSTranscodingPayload |
|
|
|
|
RunnerJobVODAudioMergeTranscodingPayload
|
|
|
|
|
|
|
|
export type RunnerJobPayload =
|
|
|
|
RunnerJobVODPayload |
|
2023-05-04 09:29:34 -04:00
|
|
|
RunnerJobLiveRTMPHLSTranscodingPayload |
|
|
|
|
RunnerJobVideoEditionTranscodingPayload
|
2023-04-21 08:55:10 -04:00
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export interface RunnerJobVODWebVideoTranscodingPayload {
|
|
|
|
input: {
|
|
|
|
videoFileUrl: string
|
|
|
|
}
|
|
|
|
|
|
|
|
output: {
|
|
|
|
resolution: number
|
|
|
|
fps: number
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RunnerJobVODHLSTranscodingPayload {
|
|
|
|
input: {
|
|
|
|
videoFileUrl: string
|
|
|
|
}
|
|
|
|
|
|
|
|
output: {
|
|
|
|
resolution: number
|
|
|
|
fps: number
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface RunnerJobVODAudioMergeTranscodingPayload {
|
|
|
|
input: {
|
|
|
|
audioFileUrl: string
|
|
|
|
previewFileUrl: string
|
|
|
|
}
|
|
|
|
|
|
|
|
output: {
|
|
|
|
resolution: number
|
|
|
|
fps: number
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-04 09:29:34 -04:00
|
|
|
export interface RunnerJobVideoEditionTranscodingPayload {
|
|
|
|
input: {
|
|
|
|
videoFileUrl: string
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks: VideoStudioTaskPayload[]
|
|
|
|
}
|
|
|
|
|
2023-04-21 08:55:10 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export function isAudioMergeTranscodingPayload (payload: RunnerJobPayload): payload is RunnerJobVODAudioMergeTranscodingPayload {
|
|
|
|
return !!(payload as RunnerJobVODAudioMergeTranscodingPayload).input.audioFileUrl
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
export interface RunnerJobLiveRTMPHLSTranscodingPayload {
|
|
|
|
input: {
|
|
|
|
rtmpUrl: string
|
|
|
|
}
|
|
|
|
|
|
|
|
output: {
|
|
|
|
toTranscode: {
|
|
|
|
resolution: number
|
|
|
|
fps: number
|
|
|
|
}[]
|
|
|
|
|
|
|
|
segmentDuration: number
|
|
|
|
segmentListSize: number
|
|
|
|
}
|
|
|
|
}
|