X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=scripts%2Foptimize-old-videos.ts;h=a1d5345a1164a668ccaded484c407faf9dfdbc25;hb=3acc50844047a37698f0618fa235c138e386a053;hp=02026b3dadeb0a0e0d45a80def58a5d1b0f575ab;hpb=9f1ddd249652c1e35b45db33885a00a005f9b059;p=github%2FChocobozzz%2FPeerTube.git diff --git a/scripts/optimize-old-videos.ts b/scripts/optimize-old-videos.ts index 02026b3da..a1d5345a1 100644 --- a/scripts/optimize-old-videos.ts +++ b/scripts/optimize-old-videos.ts @@ -1,8 +1,12 @@ import { VIDEO_TRANSCODING_FPS } from '../server/initializers/constants' -import { getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffmpeg-utils' +import { getDurationFromVideoFile, getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffmpeg-utils' import { getMaxBitrate } from '../shared/models/videos' import { VideoModel } from '../server/models/video/video' import { optimizeVideofile } from '../server/lib/video-transcoding' +import { initDatabaseModels } from '../server/initializers' +import { basename, dirname, join } from 'path' +import { copy, move, remove } from 'fs-extra' +import { CONFIG } from '../server/initializers/config' run() .then(() => process.exit(0)) @@ -11,22 +15,51 @@ run() process.exit(-1) }) +let currentVideoId = null +let currentFile = null + +process.on('SIGINT', async function () { + console.log('Cleaning up temp files') + await remove(`${currentFile}_backup`) + await remove(`${dirname(currentFile)}/${currentVideoId}-transcoded.mp4`) + process.exit(0) +}) + async function run () { + await initDatabaseModels(true) + const localVideos = await VideoModel.listLocal() for (const video of localVideos) { + currentVideoId = video.id for (const file of video.VideoFiles) { - const inputPath = video.getVideoFilename(file) + currentFile = join(CONFIG.STORAGE.VIDEOS_DIR, video.getVideoFilename(file)) const [ videoBitrate, fps, resolution ] = await Promise.all([ - getVideoFileBitrate(inputPath), - getVideoFileFPS(inputPath), - getVideoFileResolution(inputPath) + getVideoFileBitrate(currentFile), + getVideoFileFPS(currentFile), + getVideoFileResolution(currentFile) ]) - const isMaxBitrateExceeded = videoBitrate > getMaxBitrate(resolution.videoFileResolution, fps, VIDEO_TRANSCODING_FPS) + 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(currentFile), videoBitrate / 1000, maxBitrate / 1000) + const backupFile = `${currentFile}_backup` + await copy(currentFile, backupFile) await optimizeVideofile(video, file) + const originalDuration = await getDurationFromVideoFile(backupFile) + const newDuration = await getDurationFromVideoFile(currentFile) + if (originalDuration === newDuration) { + console.log('Finished optimizing %s', basename(currentFile)) + await remove(backupFile) + } else { + console.log('Failed to optimize %s, restoring original', basename(currentFile)) + move(backupFile, currentFile, { overwrite: true }) + await video.createTorrentAndSetInfoHash(file) + await file.save() + } } } }