aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/optimize-old-videos.ts
blob: 245e4cf284fae5ce199dcb4546fef1a734ead2dd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
import { registerTSPaths } from '../server/helpers/register-ts-paths'
registerTSPaths()

import { copy, move, remove } from 'fs-extra'
import { basename, dirname } from 'path'
import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent'
import { CONFIG } from '@server/initializers/config'
import { processMoveToObjectStorage } from '@server/lib/job-queue/handlers/move-to-object-storage'
import { VideoPathManager } from '@server/lib/video-path-manager'
import { getMaxBitrate } from '@shared/core-utils'
import { MoveObjectStoragePayload } from '@shared/models'
import { getDurationFromVideoFile, getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffprobe-utils'
import { initDatabaseModels } from '../server/initializers/database'
import { optimizeOriginalVideofile } from '../server/lib/transcoding/video-transcoding'
import { VideoModel } from '../server/models/video/video'

run()
  .then(() => process.exit(0))
  .catch(err => {
    console.error(err)
    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 () {
  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) {
      await VideoPathManager.Instance.makeAvailableVideoFile(video, file, async path => {
        currentFilePath = path

        const [ videoBitrate, fps, dataResolution ] = await Promise.all([
          getVideoFileBitrate(currentFilePath),
          getVideoFileFPS(currentFilePath),
          getVideoFileResolution(currentFilePath)
        ])

        const maxBitrate = getMaxBitrate({ ...dataResolution, 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 = VideoPathManager.Instance.getFSVideoFileOutputPath(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)
            return
          }

          console.log('Failed to optimize %s, restoring original', basename(currentFilePath))
          await move(backupFile, currentFilePath, { overwrite: true })
          await createTorrentAndSetInfoHash(video, file)
          await file.save()
        }
      })
    }

    if (CONFIG.OBJECT_STORAGE.ENABLED === true) {
      await processMoveToObjectStorage({ data: { videoUUID: video.uuid } as MoveObjectStoragePayload } as any)
    }
  }

  console.log('Finished optimizing videos')
}