2023-04-21 14:55:10 +02:00
|
|
|
import { FfprobeData } from 'fluent-ffmpeg'
|
2023-07-31 14:34:36 +02:00
|
|
|
import { VideoFileMetadata, VideoResolution } from '@peertube/peertube-models'
|
|
|
|
import { logger } from '@server/helpers/logger.js'
|
|
|
|
import { VideoFileModel } from '@server/models/video/video-file.js'
|
|
|
|
import { MVideoWithAllFiles } from '@server/types/models/index.js'
|
|
|
|
import { getFileSize, getLowercaseExtension } from '@peertube/peertube-node-utils'
|
|
|
|
import { ffprobePromise, getVideoStreamDimensionsInfo, getVideoStreamFPS, isAudioFile } from '@peertube/peertube-ffmpeg'
|
|
|
|
import { lTags } from './object-storage/shared/index.js'
|
|
|
|
import { generateHLSVideoFilename, generateWebVideoFilename } from './paths.js'
|
|
|
|
import { VideoPathManager } from './video-path-manager.js'
|
2023-10-03 12:20:11 +02:00
|
|
|
import { MIMETYPES } from '@server/initializers/constants.js'
|
2023-04-21 14:55:10 +02:00
|
|
|
|
|
|
|
async function buildNewFile (options: {
|
|
|
|
path: string
|
|
|
|
mode: 'web-video' | 'hls'
|
2023-10-19 14:18:22 +02:00
|
|
|
ffprobe?: FfprobeData
|
2023-04-21 14:55:10 +02:00
|
|
|
}) {
|
2023-10-19 14:18:22 +02:00
|
|
|
const { path, mode, ffprobe: probeArg } = options
|
2023-04-21 14:55:10 +02:00
|
|
|
|
2023-10-19 14:18:22 +02:00
|
|
|
const probe = probeArg ?? await ffprobePromise(path)
|
2023-04-21 14:55:10 +02:00
|
|
|
const size = await getFileSize(path)
|
|
|
|
|
|
|
|
const videoFile = new VideoFileModel({
|
|
|
|
extname: getLowercaseExtension(path),
|
|
|
|
size,
|
|
|
|
metadata: await buildFileMetadata(path, probe)
|
|
|
|
})
|
|
|
|
|
|
|
|
if (await isAudioFile(path, probe)) {
|
|
|
|
videoFile.resolution = VideoResolution.H_NOVIDEO
|
|
|
|
} else {
|
|
|
|
videoFile.fps = await getVideoStreamFPS(path, probe)
|
|
|
|
videoFile.resolution = (await getVideoStreamDimensionsInfo(path, probe)).resolution
|
|
|
|
}
|
|
|
|
|
|
|
|
videoFile.filename = mode === 'web-video'
|
2023-07-11 09:21:13 +02:00
|
|
|
? generateWebVideoFilename(videoFile.resolution, videoFile.extname)
|
2023-04-21 14:55:10 +02:00
|
|
|
: generateHLSVideoFilename(videoFile.resolution)
|
|
|
|
|
|
|
|
return videoFile
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
2022-07-29 14:50:41 +02:00
|
|
|
|
|
|
|
async function removeHLSPlaylist (video: MVideoWithAllFiles) {
|
|
|
|
const hls = video.getHLSPlaylist()
|
|
|
|
if (!hls) return
|
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
const videoFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
2022-07-29 14:50:41 +02:00
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
try {
|
|
|
|
await video.removeStreamingPlaylistFiles(hls)
|
|
|
|
await hls.destroy()
|
|
|
|
|
|
|
|
video.VideoStreamingPlaylists = video.VideoStreamingPlaylists.filter(p => p.id !== hls.id)
|
|
|
|
} finally {
|
|
|
|
videoFileMutexReleaser()
|
|
|
|
}
|
2022-07-29 14:50:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function removeHLSFile (video: MVideoWithAllFiles, fileToDeleteId: number) {
|
|
|
|
logger.info('Deleting HLS file %d of %s.', fileToDeleteId, video.url, lTags(video.uuid))
|
|
|
|
|
|
|
|
const hls = video.getHLSPlaylist()
|
|
|
|
const files = hls.VideoFiles
|
|
|
|
|
|
|
|
if (files.length === 1) {
|
|
|
|
await removeHLSPlaylist(video)
|
|
|
|
return undefined
|
|
|
|
}
|
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
const videoFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
2022-07-29 14:50:41 +02:00
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
try {
|
|
|
|
const toDelete = files.find(f => f.id === fileToDeleteId)
|
|
|
|
await video.removeStreamingPlaylistVideoFile(video.getHLSPlaylist(), toDelete)
|
|
|
|
await toDelete.destroy()
|
|
|
|
|
|
|
|
hls.VideoFiles = hls.VideoFiles.filter(f => f.id !== toDelete.id)
|
|
|
|
} finally {
|
|
|
|
videoFileMutexReleaser()
|
|
|
|
}
|
2022-07-29 14:50:41 +02:00
|
|
|
|
|
|
|
return hls
|
|
|
|
}
|
|
|
|
|
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2023-07-11 09:21:13 +02:00
|
|
|
async function removeAllWebVideoFiles (video: MVideoWithAllFiles) {
|
2023-05-22 10:16:45 +02:00
|
|
|
const videoFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
|
|
|
|
|
|
|
try {
|
|
|
|
for (const file of video.VideoFiles) {
|
2023-07-11 09:21:13 +02:00
|
|
|
await video.removeWebVideoFile(file)
|
2023-05-22 10:16:45 +02:00
|
|
|
await file.destroy()
|
|
|
|
}
|
2022-07-29 14:50:41 +02:00
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
video.VideoFiles = []
|
|
|
|
} finally {
|
|
|
|
videoFileMutexReleaser()
|
|
|
|
}
|
2022-07-29 14:50:41 +02:00
|
|
|
|
|
|
|
return video
|
|
|
|
}
|
|
|
|
|
2023-07-11 09:21:13 +02:00
|
|
|
async function removeWebVideoFile (video: MVideoWithAllFiles, fileToDeleteId: number) {
|
2022-07-29 14:50:41 +02:00
|
|
|
const files = video.VideoFiles
|
|
|
|
|
|
|
|
if (files.length === 1) {
|
2023-07-11 09:21:13 +02:00
|
|
|
return removeAllWebVideoFiles(video)
|
2022-07-29 14:50:41 +02:00
|
|
|
}
|
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
const videoFileMutexReleaser = await VideoPathManager.Instance.lockFiles(video.uuid)
|
|
|
|
try {
|
|
|
|
const toDelete = files.find(f => f.id === fileToDeleteId)
|
2023-07-11 09:21:13 +02:00
|
|
|
await video.removeWebVideoFile(toDelete)
|
2023-05-22 10:16:45 +02:00
|
|
|
await toDelete.destroy()
|
2022-07-29 14:50:41 +02:00
|
|
|
|
2023-05-22 10:16:45 +02:00
|
|
|
video.VideoFiles = files.filter(f => f.id !== toDelete.id)
|
|
|
|
} finally {
|
|
|
|
videoFileMutexReleaser()
|
|
|
|
}
|
2022-07-29 14:50:41 +02:00
|
|
|
|
|
|
|
return video
|
|
|
|
}
|
|
|
|
|
2023-04-21 14:55:10 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
async function buildFileMetadata (path: string, existingProbe?: FfprobeData) {
|
|
|
|
const metadata = existingProbe || await ffprobePromise(path)
|
|
|
|
|
|
|
|
return new VideoFileMetadata(metadata)
|
|
|
|
}
|
|
|
|
|
2023-10-03 12:20:11 +02:00
|
|
|
function getVideoFileMimeType (extname: string, isAudio: boolean) {
|
|
|
|
return isAudio && extname === '.mp4' // We use .mp4 even for audio file only
|
|
|
|
? MIMETYPES.AUDIO.EXT_MIMETYPE['.m4a']
|
|
|
|
: MIMETYPES.VIDEO.EXT_MIMETYPE[extname]
|
|
|
|
}
|
|
|
|
|
2023-04-21 14:55:10 +02:00
|
|
|
// ---------------------------------------------------------------------------
|
|
|
|
|
2022-07-29 14:50:41 +02:00
|
|
|
export {
|
2023-04-21 14:55:10 +02:00
|
|
|
buildNewFile,
|
|
|
|
|
2022-07-29 14:50:41 +02:00
|
|
|
removeHLSPlaylist,
|
|
|
|
removeHLSFile,
|
2023-07-11 09:21:13 +02:00
|
|
|
removeAllWebVideoFiles,
|
|
|
|
removeWebVideoFile,
|
2023-04-21 14:55:10 +02:00
|
|
|
|
2023-10-03 12:20:11 +02:00
|
|
|
buildFileMetadata,
|
|
|
|
getVideoFileMimeType
|
2022-07-29 14:50:41 +02:00
|
|
|
}
|