diff options
Diffstat (limited to 'packages/tests/src/shared/generate.ts')
-rw-r--r-- | packages/tests/src/shared/generate.ts | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/packages/tests/src/shared/generate.ts b/packages/tests/src/shared/generate.ts new file mode 100644 index 000000000..ab2ecaf40 --- /dev/null +++ b/packages/tests/src/shared/generate.ts | |||
@@ -0,0 +1,79 @@ | |||
1 | import { expect } from 'chai' | ||
2 | import { ensureDir, pathExists } from 'fs-extra/esm' | ||
3 | import { dirname } from 'path' | ||
4 | import { getMaxTheoreticalBitrate } from '@peertube/peertube-core-utils' | ||
5 | import { buildAbsoluteFixturePath } from '@peertube/peertube-node-utils' | ||
6 | import { getVideoStreamBitrate, getVideoStreamDimensionsInfo, getVideoStreamFPS } from '@peertube/peertube-ffmpeg' | ||
7 | |||
8 | async function ensureHasTooBigBitrate (fixturePath: string) { | ||
9 | const bitrate = await getVideoStreamBitrate(fixturePath) | ||
10 | const dataResolution = await getVideoStreamDimensionsInfo(fixturePath) | ||
11 | const fps = await getVideoStreamFPS(fixturePath) | ||
12 | |||
13 | const maxBitrate = getMaxTheoreticalBitrate({ ...dataResolution, fps }) | ||
14 | expect(bitrate).to.be.above(maxBitrate) | ||
15 | } | ||
16 | |||
17 | async function generateHighBitrateVideo () { | ||
18 | const tempFixturePath = buildAbsoluteFixturePath('video_high_bitrate_1080p.mp4', true) | ||
19 | |||
20 | await ensureDir(dirname(tempFixturePath)) | ||
21 | |||
22 | const exists = await pathExists(tempFixturePath) | ||
23 | |||
24 | if (!exists) { | ||
25 | const ffmpeg = (await import('fluent-ffmpeg')).default | ||
26 | |||
27 | console.log('Generating high bitrate video.') | ||
28 | |||
29 | // Generate a random, high bitrate video on the fly, so we don't have to include | ||
30 | // a large file in the repo. The video needs to have a certain minimum length so | ||
31 | // that FFmpeg properly applies bitrate limits. | ||
32 | // https://stackoverflow.com/a/15795112 | ||
33 | return new Promise<string>((res, rej) => { | ||
34 | ffmpeg() | ||
35 | .outputOptions([ '-f rawvideo', '-video_size 1920x1080', '-i /dev/urandom' ]) | ||
36 | .outputOptions([ '-ac 2', '-f s16le', '-i /dev/urandom', '-t 10' ]) | ||
37 | .outputOptions([ '-maxrate 10M', '-bufsize 10M' ]) | ||
38 | .output(tempFixturePath) | ||
39 | .on('error', rej) | ||
40 | .on('end', () => res(tempFixturePath)) | ||
41 | .run() | ||
42 | }) | ||
43 | } | ||
44 | |||
45 | await ensureHasTooBigBitrate(tempFixturePath) | ||
46 | |||
47 | return tempFixturePath | ||
48 | } | ||
49 | |||
50 | async function generateVideoWithFramerate (fps = 60) { | ||
51 | const tempFixturePath = buildAbsoluteFixturePath(`video_${fps}fps.mp4`, true) | ||
52 | |||
53 | await ensureDir(dirname(tempFixturePath)) | ||
54 | |||
55 | const exists = await pathExists(tempFixturePath) | ||
56 | if (!exists) { | ||
57 | const ffmpeg = (await import('fluent-ffmpeg')).default | ||
58 | |||
59 | console.log('Generating video with framerate %d.', fps) | ||
60 | |||
61 | return new Promise<string>((res, rej) => { | ||
62 | ffmpeg() | ||
63 | .outputOptions([ '-f rawvideo', '-video_size 1280x720', '-i /dev/urandom' ]) | ||
64 | .outputOptions([ '-ac 2', '-f s16le', '-i /dev/urandom', '-t 10' ]) | ||
65 | .outputOptions([ `-r ${fps}` ]) | ||
66 | .output(tempFixturePath) | ||
67 | .on('error', rej) | ||
68 | .on('end', () => res(tempFixturePath)) | ||
69 | .run() | ||
70 | }) | ||
71 | } | ||
72 | |||
73 | return tempFixturePath | ||
74 | } | ||
75 | |||
76 | export { | ||
77 | generateHighBitrateVideo, | ||
78 | generateVideoWithFramerate | ||
79 | } | ||