]>
Commit | Line | Data |
---|---|---|
2aaa1a3f | 1 | import { registerTSPaths } from '../server/helpers/register-ts-paths' |
66fb2aa3 C |
2 | registerTSPaths() |
3 | ||
74dc3bca | 4 | import { VIDEO_TRANSCODING_FPS } from '../server/initializers/constants' |
daf6e480 | 5 | import { getDurationFromVideoFile, getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffprobe-utils' |
edb4ffc7 | 6 | import { getMaxBitrate } from '../shared/models/videos' |
edb4ffc7 | 7 | import { VideoModel } from '../server/models/video/video' |
c07902b9 | 8 | import { optimizeOriginalVideofile } from '../server/lib/transcoding/video-transcoding' |
80fdaf06 | 9 | import { initDatabaseModels } from '../server/initializers/database' |
d7a25329 | 10 | import { basename, dirname } from 'path' |
74dc3bca | 11 | import { copy, move, remove } from 'fs-extra' |
d7a25329 C |
12 | import { createTorrentAndSetInfoHash } from '@server/helpers/webtorrent' |
13 | import { getVideoFilePath } from '@server/lib/video-paths' | |
14 | ||
edb4ffc7 FA |
15 | run() |
16 | .then(() => process.exit(0)) | |
17 | .catch(err => { | |
18 | console.error(err) | |
19 | process.exit(-1) | |
20 | }) | |
21 | ||
5e10e8d7 FA |
22 | let currentVideoId = null |
23 | let currentFile = null | |
24 | ||
25 | process.on('SIGINT', async function () { | |
26 | console.log('Cleaning up temp files') | |
27 | await remove(`${currentFile}_backup`) | |
28 | await remove(`${dirname(currentFile)}/${currentVideoId}-transcoded.mp4`) | |
29 | process.exit(0) | |
30 | }) | |
31 | ||
edb4ffc7 | 32 | async function run () { |
74cd011b C |
33 | await initDatabaseModels(true) |
34 | ||
9f1ddd24 | 35 | const localVideos = await VideoModel.listLocal() |
edb4ffc7 | 36 | |
90a8bd30 C |
37 | for (const localVideo of localVideos) { |
38 | const video = await VideoModel.loadAndPopulateAccountAndServerAndTags(localVideo.id) | |
39 | ||
5e10e8d7 | 40 | currentVideoId = video.id |
5b77537c | 41 | |
9f1ddd24 | 42 | for (const file of video.VideoFiles) { |
d7a25329 | 43 | currentFile = getVideoFilePath(video, file) |
9f1ddd24 C |
44 | |
45 | const [ videoBitrate, fps, resolution ] = await Promise.all([ | |
5e10e8d7 FA |
46 | getVideoFileBitrate(currentFile), |
47 | getVideoFileFPS(currentFile), | |
48 | getVideoFileResolution(currentFile) | |
9f1ddd24 C |
49 | ]) |
50 | ||
5e10e8d7 FA |
51 | const maxBitrate = getMaxBitrate(resolution.videoFileResolution, fps, VIDEO_TRANSCODING_FPS) |
52 | const isMaxBitrateExceeded = videoBitrate > maxBitrate | |
9f1ddd24 | 53 | if (isMaxBitrateExceeded) { |
5b77537c C |
54 | console.log( |
55 | 'Optimizing video file %s with bitrate %s kbps (max: %s kbps)', | |
56 | basename(currentFile), videoBitrate / 1000, maxBitrate / 1000 | |
57 | ) | |
58 | ||
5e10e8d7 FA |
59 | const backupFile = `${currentFile}_backup` |
60 | await copy(currentFile, backupFile) | |
5b77537c | 61 | |
d7a25329 | 62 | await optimizeOriginalVideofile(video, file) |
5b77537c | 63 | |
5e10e8d7 FA |
64 | const originalDuration = await getDurationFromVideoFile(backupFile) |
65 | const newDuration = await getDurationFromVideoFile(currentFile) | |
5b77537c | 66 | |
5e10e8d7 FA |
67 | if (originalDuration === newDuration) { |
68 | console.log('Finished optimizing %s', basename(currentFile)) | |
69 | await remove(backupFile) | |
51326912 | 70 | continue |
5e10e8d7 | 71 | } |
5b77537c C |
72 | |
73 | console.log('Failed to optimize %s, restoring original', basename(currentFile)) | |
74 | await move(backupFile, currentFile, { overwrite: true }) | |
8efc27bf | 75 | await createTorrentAndSetInfoHash(video, file) |
5b77537c | 76 | await file.save() |
9f1ddd24 | 77 | } |
edb4ffc7 FA |
78 | } |
79 | } | |
9f1ddd24 | 80 | |
edb4ffc7 FA |
81 | console.log('Finished optimizing videos') |
82 | } |