X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Foptimize-old-videos.ts;h=bde9d1e016cc2d8ce8d179951ada961a8f9f36ef;hb=4c37cbfbe28eb1e51b63393f4497d975d70aa45d;hp=ab44acfbeb755027daccccf87cac3bd2904cc558;hpb=edb4ffc7e0b13659d7c73b120f2c87b27e4c26a1;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/optimize-old-videos.ts b/scripts/optimize-old-videos.ts index ab44acfbe..bde9d1e01 100644 --- a/scripts/optimize-old-videos.ts +++ b/scripts/optimize-old-videos.ts @@ -1,12 +1,16 @@ -import { join } from 'path' -import { readdir } from 'fs-extra' -import { CONFIG, VIDEO_TRANSCODING_FPS } from '../server/initializers/constants' -import { getVideoFileResolution, getVideoFileBitrate, getVideoFileFPS } from '../server/helpers/ffmpeg-utils' +import { registerTSPaths } from '../server/helpers/register-ts-paths' +registerTSPaths() + +import { VIDEO_TRANSCODING_FPS } from '../server/initializers/constants' +import { getDurationFromVideoFile, getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffprobe-utils' import { getMaxBitrate } from '../shared/models/videos' -import { VideoRedundancyModel } from '../server/models/redundancy/video-redundancy' import { VideoModel } from '../server/models/video/video' -import { getUUIDFromFilename } from '../server/helpers/utils' -import { optimizeVideofile } from '../server/lib/video-transcoding' +import { optimizeOriginalVideofile } from '../server/lib/transcoding/video-transcoding' +import { initDatabaseModels } from '../server/initializers/database' +import { basename, dirname } from 'path' +import { copy, move, remove } from 'fs-extra' +import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent' +import { getVideoFilePath } from '@server/lib/video-paths' run() .then(() => process.exit(0)) @@ -15,22 +19,66 @@ run() process.exit(-1) }) +let currentVideoId: string +let currentFilePath: string + +process.on('SIGINT', async function () { + console.log('Cleaning up temp files') + await remove(`${currentFilePath}_backup`) + await remove(`${dirname(currentFilePath)}/${currentVideoId}-transcoded.mp4`) + process.exit(0) +}) + async function run () { - const files = await readdir(CONFIG.STORAGE.VIDEOS_DIR) - for (const file of files) { - const inputPath = join(CONFIG.STORAGE.VIDEOS_DIR, file) - const videoBitrate = await getVideoFileBitrate(inputPath) - const fps = await getVideoFileFPS(inputPath) - const resolution = await getVideoFileResolution(inputPath) - const uuid = getUUIDFromFilename(file) - - const isLocalVideo = await VideoRedundancyModel.isLocalByVideoUUIDExists(uuid) - const isMaxBitrateExceeded = - videoBitrate > getMaxBitrate(resolution.videoFileResolution, fps, VIDEO_TRANSCODING_FPS) - if (uuid && isLocalVideo && isMaxBitrateExceeded) { - const videoModel = await VideoModel.loadByUUIDWithFile(uuid) - await optimizeVideofile(videoModel, inputPath) + await initDatabaseModels(true) + + const localVideos = await VideoModel.listLocal() + + for (const localVideo of localVideos) { + const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(localVideo.id) + + currentVideoId = video.id + + for (const file of video.VideoFiles) { + currentFilePath = getVideoFilePath(video, file) + + const [ videoBitrate, fps, resolution ] = await Promise.all([ + getVideoFileBitrate(currentFilePath), + getVideoFileFPS(currentFilePath), + getVideoFileResolution(currentFilePath) + ]) + + const maxBitrate = getMaxBitrate(resolution.videoFileResolution, fps, VIDEO_TRANSCODING_FPS) + const isMaxBitrateExceeded = videoBitrate > maxBitrate + if (isMaxBitrateExceeded) { + console.log( + 'Optimizing video file %s with bitrate %s kbps (max: %s kbps)', + basename(currentFilePath), videoBitrate / 1000, maxBitrate / 1000 + ) + + const backupFile = `${currentFilePath}_backup` + await copy(currentFilePath, backupFile) + + await optimizeOriginalVideofile(video, file) + // Update file path, the video filename changed + currentFilePath = getVideoFilePath(video, file) + + const originalDuration = await getDurationFromVideoFile(backupFile) + const newDuration = await getDurationFromVideoFile(currentFilePath) + + if (originalDuration === newDuration) { + console.log('Finished optimizing %s', basename(currentFilePath)) + await remove(backupFile) + continue + } + + console.log('Failed to optimize %s, restoring original', basename(currentFilePath)) + await move(backupFile, currentFilePath, { overwrite: true }) + await createTorrentAndSetInfoHash(video, file) + await file.save() + } } } + console.log('Finished optimizing videos') }