PeerTube/server/lib/jobs/handlers/video-file-transcoder.ts

34 lines
1.0 KiB
TypeScript
Raw Normal View History

2017-05-22 18:58:25 +00:00
import { database as db } from '../../../initializers/database'
import { updateVideoToFriends } from '../../friends'
2017-05-15 20:22:03 +00:00
import { logger } from '../../../helpers'
2017-06-10 20:15:25 +00:00
import { VideoInstance } from '../../../models'
import { VideoResolution } from '../../../../shared'
function process (data: { videoUUID: string, resolution: VideoResolution }) {
return db.Video.loadByUUIDAndPopulateAuthorAndPodAndTags(data.videoUUID).then(video => {
return video.transcodeOriginalVideofile(data.resolution).then(() => video)
})
}
function onError (err: Error, jobId: number) {
2017-07-07 16:26:12 +00:00
logger.error('Error when transcoding video file in job %d.', jobId, err)
return Promise.resolve()
}
function onSuccess (jobId: number, video: VideoInstance) {
logger.info('Job %d is a success.', jobId)
const remoteVideo = video.toUpdateRemoteJSON()
// Now we'll add the video's meta data to our friends
return updateVideoToFriends(remoteVideo, null)
}
// ---------------------------------------------------------------------------
2017-05-15 20:22:03 +00:00
export {
process,
onError,
onSuccess
}