2019-05-03 21:18:32 -04:00
|
|
|
import { HLS_STREAMING_PLAYLIST_DIRECTORY, P2P_MEDIA_LOADER_PEER_VERSION, WEBSERVER } from '../initializers/constants'
|
2019-03-19 12:10:53 -04:00
|
|
|
import { join } from 'path'
|
2019-05-16 10:55:34 -04:00
|
|
|
import { canDoQuickTranscode, getVideoFileFPS, transcode, TranscodeOptions, TranscodeOptionsType } from '../helpers/ffmpeg-utils'
|
2019-03-19 12:10:53 -04:00
|
|
|
import { ensureDir, move, remove, stat } from 'fs-extra'
|
2018-09-18 05:02:51 -04:00
|
|
|
import { logger } from '../helpers/logger'
|
|
|
|
import { VideoResolution } from '../../shared/models/videos'
|
|
|
|
import { VideoFileModel } from '../models/video/video-file'
|
|
|
|
import { VideoModel } from '../models/video/video'
|
2019-01-29 02:37:25 -05: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 05:33:44 -04:00
|
|
|
import { CONFIG } from '../initializers/config'
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-13 07:02:42 -04:00
|
|
|
/**
|
|
|
|
* Optimize the original video file and replace it. The resolution is not changed.
|
|
|
|
*/
|
2018-10-08 10:50:56 -04:00
|
|
|
async function optimizeVideofile (video: VideoModel, inputVideoFileArg?: VideoFileModel) {
|
2018-09-18 05:02:51 -04:00
|
|
|
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
|
2019-05-13 01:26:56 -04:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2018-09-18 05:02:51 -04:00
|
|
|
const newExtname = '.mp4'
|
2018-10-08 10:50:56 -04:00
|
|
|
|
|
|
|
const inputVideoFile = inputVideoFileArg ? inputVideoFileArg : video.getOriginalFile()
|
|
|
|
const videoInputPath = join(videosDirectory, video.getVideoFilename(inputVideoFile))
|
2019-05-13 01:26:56 -04:00
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const transcodeType: TranscodeOptionsType = await canDoQuickTranscode(videoInputPath)
|
|
|
|
? 'quick-transcode'
|
|
|
|
: 'video'
|
2019-04-24 14:27:05 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const transcodeOptions: TranscodeOptions = {
|
|
|
|
type: transcodeType as any, // FIXME: typing issue
|
2018-09-18 05:02:51 -04:00
|
|
|
inputPath: videoInputPath,
|
2019-01-29 02:37:25 -05:00
|
|
|
outputPath: videoTranscodedPath,
|
2019-05-16 10:55:34 -04:00
|
|
|
resolution: inputVideoFile.resolution
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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 10:55:34 -04:00
|
|
|
inputVideoFile.extname = newExtname
|
2019-05-13 01:26:56 -04:00
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
const videoOutputPath = video.getVideoFilePath(inputVideoFile)
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
await onVideoFileTranscoding(video, inputVideoFile, videoTranscodedPath, videoOutputPath)
|
2018-09-18 05:02:51 -04:00
|
|
|
} catch (err) {
|
|
|
|
// Auto destruction...
|
|
|
|
video.destroy().catch(err => logger.error('Cannot destruct video after transcoding failure.', { err }))
|
|
|
|
|
|
|
|
throw err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-13 07:02:42 -04:00
|
|
|
/**
|
|
|
|
* Transcode the original video file to a lower resolution.
|
|
|
|
*/
|
2019-01-29 02:37:25 -05:00
|
|
|
async function transcodeOriginalVideofile (video: VideoModel, resolution: VideoResolution, isPortrait: boolean) {
|
2018-09-18 05:02:51 -04:00
|
|
|
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
|
2019-05-13 01:26:56 -04:00
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
2018-09-18 05:02:51 -04:00
|
|
|
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 02:37:25 -05:00
|
|
|
const videoOutputPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(newVideoFile))
|
2019-05-13 01:26:56 -04:00
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.getVideoFilename(newVideoFile))
|
2018-09-18 05:02:51 -04:00
|
|
|
|
|
|
|
const transcodeOptions = {
|
2019-05-16 10:55:34 -04:00
|
|
|
type: 'video' as 'video',
|
2018-09-18 05:02:51 -04:00
|
|
|
inputPath: videoInputPath,
|
2019-05-13 01:26:56 -04:00
|
|
|
outputPath: videoTranscodedPath,
|
2018-09-18 05:02:51 -04:00
|
|
|
resolution,
|
2019-01-29 02:37:25 -05:00
|
|
|
isPortraitMode: isPortrait
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
await transcode(transcodeOptions)
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
return onVideoFileTranscoding(video, newVideoFile, videoTranscodedPath, videoOutputPath)
|
|
|
|
}
|
|
|
|
|
|
|
|
async function mergeAudioVideofile (video: VideoModel, resolution: VideoResolution) {
|
|
|
|
const videosDirectory = CONFIG.STORAGE.VIDEOS_DIR
|
|
|
|
const transcodeDirectory = CONFIG.STORAGE.TMP_DIR
|
|
|
|
const newExtname = '.mp4'
|
|
|
|
|
|
|
|
const inputVideoFile = video.getOriginalFile()
|
2019-05-13 01:26:56 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const audioInputPath = join(videosDirectory, video.getVideoFilename(video.getOriginalFile()))
|
|
|
|
const videoTranscodedPath = join(transcodeDirectory, video.id + '-transcoded' + newExtname)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
const transcodeOptions = {
|
|
|
|
type: 'merge-audio' as 'merge-audio',
|
|
|
|
inputPath: video.getPreview().getPath(),
|
|
|
|
outputPath: videoTranscodedPath,
|
|
|
|
audioPath: audioInputPath,
|
|
|
|
resolution
|
|
|
|
}
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
await transcode(transcodeOptions)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
await remove(audioInputPath)
|
2018-09-18 05:02:51 -04:00
|
|
|
|
2019-05-16 10:55:34 -04: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)
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|
|
|
|
|
2019-01-29 02:37:25 -05:00
|
|
|
async function generateHlsPlaylist (video: VideoModel, resolution: VideoResolution, isPortraitMode: boolean) {
|
2019-03-05 06:00:31 -05:00
|
|
|
const baseHlsDirectory = join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid)
|
|
|
|
await ensureDir(join(HLS_STREAMING_PLAYLIST_DIRECTORY, video.uuid))
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
const videoInputPath = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(video.getOriginalFile()))
|
|
|
|
const outputPath = join(baseHlsDirectory, VideoStreamingPlaylistModel.getHlsPlaylistFilename(resolution))
|
|
|
|
|
|
|
|
const transcodeOptions = {
|
2019-05-16 10:55:34 -04:00
|
|
|
type: 'hls' as 'hls',
|
2019-01-29 02:37:25 -05:00
|
|
|
inputPath: videoInputPath,
|
|
|
|
outputPath,
|
|
|
|
resolution,
|
|
|
|
isPortraitMode,
|
2019-02-07 09:08:19 -05:00
|
|
|
|
|
|
|
hlsPlaylist: {
|
|
|
|
videoFilename: VideoStreamingPlaylistModel.getHlsVideoName(video.uuid, resolution)
|
|
|
|
}
|
2019-01-29 02:37:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
await transcode(transcodeOptions)
|
|
|
|
|
|
|
|
await updateMasterHLSPlaylist(video)
|
|
|
|
await updateSha256Segments(video)
|
|
|
|
|
2019-04-11 05:33:44 -04:00
|
|
|
const playlistUrl = WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsMasterPlaylistStaticPath(video.uuid)
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
await VideoStreamingPlaylistModel.upsert({
|
|
|
|
videoId: video.id,
|
|
|
|
playlistUrl,
|
2019-04-11 05:33:44 -04:00
|
|
|
segmentsSha256Url: WEBSERVER.URL + VideoStreamingPlaylistModel.getHlsSha256SegmentsStaticPath(video.uuid),
|
2019-01-29 02:37:25 -05:00
|
|
|
p2pMediaLoaderInfohashes: VideoStreamingPlaylistModel.buildP2PMediaLoaderInfoHashes(playlistUrl, video.VideoFiles),
|
2019-04-08 06:08:16 -04:00
|
|
|
p2pMediaLoaderPeerVersion: P2P_MEDIA_LOADER_PEER_VERSION,
|
2019-01-29 02:37:25 -05:00
|
|
|
|
|
|
|
type: VideoStreamingPlaylistType.HLS
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-05-16 10:55:34 -04:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2018-09-18 05:02:51 -04:00
|
|
|
export {
|
2019-01-29 02:37:25 -05:00
|
|
|
generateHlsPlaylist,
|
2018-10-08 10:26:04 -04:00
|
|
|
optimizeVideofile,
|
2019-05-16 10:55:34 -04:00
|
|
|
transcodeOriginalVideofile,
|
|
|
|
mergeAudioVideofile
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function onVideoFileTranscoding (video: VideoModel, videoFile: VideoFileModel, transcodingPath: string, outputPath: string) {
|
|
|
|
const stats = await stat(transcodingPath)
|
|
|
|
const fps = await getVideoFileFPS(transcodingPath)
|
|
|
|
|
|
|
|
await move(transcodingPath, outputPath)
|
|
|
|
|
|
|
|
videoFile.set('size', stats.size)
|
|
|
|
videoFile.set('fps', fps)
|
|
|
|
|
|
|
|
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
|
2018-09-18 05:02:51 -04:00
|
|
|
}
|