diff options
Diffstat (limited to 'scripts/optimize-old-videos.ts')
-rw-r--r-- | scripts/optimize-old-videos.ts | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/scripts/optimize-old-videos.ts b/scripts/optimize-old-videos.ts new file mode 100644 index 000000000..02026b3da --- /dev/null +++ b/scripts/optimize-old-videos.ts | |||
@@ -0,0 +1,35 @@ | |||
1 | import { VIDEO_TRANSCODING_FPS } from '../server/initializers/constants' | ||
2 | import { getVideoFileBitrate, getVideoFileFPS, getVideoFileResolution } from '../server/helpers/ffmpeg-utils' | ||
3 | import { getMaxBitrate } from '../shared/models/videos' | ||
4 | import { VideoModel } from '../server/models/video/video' | ||
5 | import { optimizeVideofile } from '../server/lib/video-transcoding' | ||
6 | |||
7 | run() | ||
8 | .then(() => process.exit(0)) | ||
9 | .catch(err => { | ||
10 | console.error(err) | ||
11 | process.exit(-1) | ||
12 | }) | ||
13 | |||
14 | async function run () { | ||
15 | const localVideos = await VideoModel.listLocal() | ||
16 | |||
17 | for (const video of localVideos) { | ||
18 | for (const file of video.VideoFiles) { | ||
19 | const inputPath = video.getVideoFilename(file) | ||
20 | |||
21 | const [ videoBitrate, fps, resolution ] = await Promise.all([ | ||
22 | getVideoFileBitrate(inputPath), | ||
23 | getVideoFileFPS(inputPath), | ||
24 | getVideoFileResolution(inputPath) | ||
25 | ]) | ||
26 | |||
27 | const isMaxBitrateExceeded = videoBitrate > getMaxBitrate(resolution.videoFileResolution, fps, VIDEO_TRANSCODING_FPS) | ||
28 | if (isMaxBitrateExceeded) { | ||
29 | await optimizeVideofile(video, file) | ||
30 | } | ||
31 | } | ||
32 | } | ||
33 | |||
34 | console.log('Finished optimizing videos') | ||
35 | } | ||