PeerTube/server/lib/live/shared/transcoding-wrapper/remote-transcoding-wrapper.ts

22 lines
662 B
TypeScript
Raw Normal View History

import { LiveRTMPHLSTranscodingJobHandler } from '@server/lib/runners'
import { AbstractTranscodingWrapper } from './abstract-transcoding-wrapper'
export class RemoteTranscodingWrapper extends AbstractTranscodingWrapper {
async run () {
await new LiveRTMPHLSTranscodingJobHandler().create({
2023-05-16 02:12:50 -05:00
rtmpUrl: this.inputPublicUrl,
2023-05-22 06:44:22 -05:00
sessionId: this.sessionId,
toTranscode: this.toTranscode,
video: this.videoLive.Video,
outputDirectory: this.outDirectory,
playlist: this.streamingPlaylist,
segmentListSize: this.segmentListSize,
segmentDuration: this.segmentDuration
})
}
abort () {
this.emit('end')
}
}