PeerTube/server/lib/video-transcoding.ts

188 lines
6.7 KiB
TypeScript
Raw Normal View History

2019-05-04 03:18:32 +02:00
import { HLS_STREAMING_PLAYLIST_DIRECTORY, P2P_MEDIA_LOADER_PEER_VERSION, WEBSERVER } from '../initializers/constants'
2019-03-19 17:10:53 +01:00
import { join } from 'path'
2019-05-16 16:55:34 +02:00
import { canDoQuickTranscode, getVideoFileFPS, transcode, TranscodeOptions, TranscodeOptionsType } from '../helpers/ffmpeg-utils'
2019-03-19 17:10:53 +01:00
import { ensureDir, move, remove, stat } from 'fs-extra'
import { logger } from '../helpers/logger'
import { VideoResolution } from '../../shared/models/videos'
import { VideoFileModel } from '../models/video/video-file'
2019-01-29 08:37:25 +01:00
import { updateMasterHLSPlaylist, updateSha256Segments } from './hls'
import { VideoStreamingPlaylistModel } from '../models/video/video-streaming-playlist'
import { VideoStreamingPlaylistType } from '../../shared/models/videos/video-streaming-playlist.type'
2019-04-11 11:33:44 +02:00
import { CONFIG } from '../initializers/config'
2019-08-15 11:53:26 +02:00
import { MVideoFile, MVideoWithFile, MVideoWithFileThumbnail } from '@server/typings/models'
2019-05-13 13:02:42 +02:00
/**
* Optimize the original video file and replace it. The resolution is not changed.
*/
2019-08-15 11:53:26 +02:00
async function optimizeVideofile (video: MVideoWithFile, inputVideoFileArg?: MVideoFile) {
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
const newExtname = '.mp4'
const inputVideoFile = inputVideoFileArg ? inputVideoFileArg : video.getOriginalFile()
const videoInputPath = join(videosDirectory, video.getVideoFilename(inputVideoFile))
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
2019-05-16 16:55:34 +02:00
const transcodeType: TranscodeOptionsType = await canDoQuickTranscode(videoInputPath)
? 'quick-transcode'
: 'video'
2019-05-16 16:55:34 +02:00
const transcodeOptions: TranscodeOptions = {
type: transcodeType as any, // FIXME: typing issue
inputPath: videoInputPath,
2019-01-29 08:37:25 +01:00
outputPath: videoTranscodedPath,
2019-05-16 16:55:34 +02:00
resolution: inputVideoFile.resolution
}
// Could be very long!
await transcode(transcodeOptions)
try {
await remove(videoInputPath)
// Important to do this before getVideoFilename() to take in account the new file extension
2019-05-16 16:55:34 +02:00
inputVideoFile.extname = newExtname
const videoOutputPath = video.getVideoFilePath(inputVideoFile)
2019-05-16 16:55:34 +02:00
await onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
} catch (err) {
// Auto destruction...
video.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', { err }))
throw err
}
}
2019-05-13 13:02:42 +02:00
/**
* Transcode the original video file to a lower resolution.
*/
2019-08-15 11:53:26 +02:00
async function transcodeOriginalVideofile (video: MVideoWithFile, resolution: VideoResolution, isPortrait: boolean) {
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
const extname = '.mp4'
// We are sure it's x264 in mp4 because optimizeOriginalVideofile was already executed
const videoInputPath = join(videosDirectory, video.getVideoFilename(video.getOriginalFile()))
const newVideoFile = new VideoFileModel({
resolution,
extname,
size: 0,
videoId: video.id
})
2019-01-29 08:37:25 +01:00
const videoOutputPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(newVideoFile))
const videoTranscodedPath = join(transcodeDirectory, video.getVideoFilename(newVideoFile))
const transcodeOptions = {
2019-05-16 16:55:34 +02:00
type: 'video' as 'video',
inputPath: videoInputPath,
outputPath: videoTranscodedPath,
resolution,
2019-01-29 08:37:25 +01:00
isPortraitMode: isPortrait
}
await transcode(transcodeOptions)
2019-05-16 16:55:34 +02:00
return onVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, videoOutputPath)
}
2019-08-15 11:53:26 +02:00
async function mergeAudioVideofile (video: MVideoWithFileThumbnail, resolution: VideoResolution) {
2019-05-16 16:55:34 +02:00
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
const newExtname = '.mp4'
const inputVideoFile = video.getOriginalFile()
2019-05-16 16:55:34 +02:00
const audioInputPath = join(videosDirectory, video.getVideoFilename(video.getOriginalFile()))
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
2019-05-16 16:55:34 +02:00
const transcodeOptions = {
type: 'merge-audio' as 'merge-audio',
inputPath: video.getPreview().getPath(),
outputPath: videoTranscodedPath,
audioPath: audioInputPath,
resolution
}
2019-05-16 16:55:34 +02:00
await transcode(transcodeOptions)
2019-05-16 16:55:34 +02:00
await remove(audioInputPath)
2019-05-16 16:55:34 +02:00
// Important to do this before getVideoFilename() to take in account the new file extension
inputVideoFile.extname = newExtname
const videoOutputPath = video.getVideoFilePath(inputVideoFile)
return onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
}
2019-08-15 11:53:26 +02:00
async function generateHlsPlaylist (video: MVideoWithFile, resolution: VideoResolution, isPortraitMode: boolean) {
const baseHlsDirectory = join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid)
await ensureDir(join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid))
2019-01-29 08:37:25 +01:00
2019-08-01 14:19:18 +02:00
const videoInputPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(video.getFile(resolution)))
2019-01-29 08:37:25 +01:00
const outputPath = join(baseHlsDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(resolution))
const transcodeOptions = {
2019-05-16 16:55:34 +02:00
type: 'hls' as 'hls',
2019-01-29 08:37:25 +01:00
inputPath: videoInputPath,
outputPath,
resolution,
isPortraitMode,
hlsPlaylist: {
videoFilename: VideoStreamingPlaylistModel.getHlsVideoName(video.uuid, resolution)
}
2019-01-29 08:37:25 +01:00
}
await transcode(transcodeOptions)
await updateMasterHLSPlaylist(video)
await updateSha256Segments(video)
2019-04-11 11:33:44 +02:00
const playlistUrl = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsMasterPlaylistStaticPath(video.uuid)
2019-01-29 08:37:25 +01:00
await VideoStreamingPlaylistModel.upsert({
videoId: video.id,
playlistUrl,
2019-04-11 11:33:44 +02:00
segmentsSha256Url: WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsSha256SegmentsStaticPath(video.uuid),
2019-01-29 08:37:25 +01:00
p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrl, video.VideoFiles),
2019-04-08 12:08:16 +02:00
p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
2019-01-29 08:37:25 +01:00
type: VideoStreamingPlaylistType.HLS
})
}
2019-05-16 16:55:34 +02:00
// ---------------------------------------------------------------------------
export {
2019-01-29 08:37:25 +01:00
generateHlsPlaylist,
optimizeVideofile,
2019-05-16 16:55:34 +02:00
transcodeOriginalVideofile,
mergeAudioVideofile
}
// ---------------------------------------------------------------------------
2019-08-15 11:53:26 +02:00
async function onVideoFileTranscoding (video: MVideoWithFile, videoFile: MVideoFile, transcodingPath: string, outputPath: string) {
2019-05-16 16:55:34 +02:00
const stats = await stat(transcodingPath)
const fps = await getVideoFileFPS(transcodingPath)
await move(transcodingPath, outputPath)
2019-08-15 11:53:26 +02:00
videoFile.size = stats.size
videoFile.fps = fps
2019-05-16 16:55:34 +02:00
await video.createTorrentAndSetInfoHash(videoFile)
const updatedVideoFile = await videoFile.save()
// Add it if this is a new created file
if (video.VideoFiles.some(f => f.id === videoFile.id) === false) {
video.VideoFiles.push(updatedVideoFile)
}
return video
}