PeerTube/scripts/optimize-old-videos.ts

84 lines
2.9 KiB
TypeScript
Raw Normal View History

import { registerTSPaths } from '../server/helpers/register-ts-paths'
2019-11-21 12:16:27 +01:00
registerTSPaths()
2020-11-20 17:16:55 +01:00
import { getDurationFromVideoFile, getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffprobe-utils'
import { VideoModel } from '../server/models/video/video'
import { optimizeOriginalVideofile } from '../server/lib/transcoding/video-transcoding'
2020-05-07 14:58:24 +02:00
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'
2021-08-06 13:35:25 +02:00
import { getMaxBitrate } from '@shared/core-utils'
run()
.then(() => process.exit(0))
.catch(err => {
console.error(err)
process.exit(-1)
})
2021-07-23 11:20:00 +02:00
let currentVideoId: string
let currentFilePath: string
process.on('SIGINT', async function () {
console.log('Cleaning up temp files')
2021-07-23 11:20:00 +02:00
await remove(`${currentFilePath}_backup`)
await remove(`${dirname(currentFilePath)}/${currentVideoId}-transcoded.mp4`)
process.exit(0)
})
async function run () {
2018-10-18 16:53:52 +02:00
await initDatabaseModels(true)
const localVideos = await VideoModel.listLocal()
for (const localVideo of localVideos) {
const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(localVideo.id)
currentVideoId = video.id
2019-07-23 12:04:15 +02:00
for (const file of video.VideoFiles) {
2021-07-23 11:20:00 +02:00
currentFilePath = getVideoFilePath(video, file)
2021-08-06 13:35:25 +02:00
const [ videoBitrate, fps, dataResolution ] = await Promise.all([
2021-07-23 11:20:00 +02:00
getVideoFileBitrate(currentFilePath),
getVideoFileFPS(currentFilePath),
getVideoFileResolution(currentFilePath)
])
2021-08-06 13:35:25 +02:00
const maxBitrate = getMaxBitrate({ ...dataResolution, fps })
const isMaxBitrateExceeded = videoBitrate > maxBitrate
if (isMaxBitrateExceeded) {
2019-07-23 12:04:15 +02:00
console.log(
'Optimizing video file %s with bitrate %s kbps (max: %s kbps)',
2021-07-23 11:20:00 +02:00
basename(currentFilePath), videoBitrate / 1000, maxBitrate / 1000
2019-07-23 12:04:15 +02:00
)
2021-07-23 11:20:00 +02:00
const backupFile = `${currentFilePath}_backup`
await copy(currentFilePath, backupFile)
2019-07-23 12:04:15 +02:00
await optimizeOriginalVideofile(video, file)
2021-07-23 11:20:00 +02:00
// Update file path, the video filename changed
currentFilePath = getVideoFilePath(video, file)
2019-07-23 12:04:15 +02:00
const originalDuration = await getDurationFromVideoFile(backupFile)
2021-07-23 11:20:00 +02:00
const newDuration = await getDurationFromVideoFile(currentFilePath)
2019-07-23 12:04:15 +02:00
if (originalDuration === newDuration) {
2021-07-23 11:20:00 +02:00
console.log('Finished optimizing %s', basename(currentFilePath))
await remove(backupFile)
2019-07-24 09:34:06 +02:00
continue
}
2019-07-23 12:04:15 +02:00
2021-07-23 11:20:00 +02:00
console.log('Failed to optimize %s, restoring original', basename(currentFilePath))
await move(backupFile, currentFilePath, { overwrite: true })
2021-02-18 11:28:00 +01:00
await createTorrentAndSetInfoHash(video, file)
2019-07-23 12:04:15 +02:00
await file.save()
}
}
}
console.log('Finished optimizing videos')
}