-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtest-ffmpeg.mjs
124 lines (115 loc) · 1.88 KB
/
test-ffmpeg.mjs
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
import { execSync, spawnSync } from "child_process";
import path from "path";
import assert from "assert";
const lib = path.join(process.cwd(), "remotion", "lib");
const env =
process.platform === "darwin"
? {
...process.env,
DYLD_LIBRARY_PATH: lib,
}
: process.platform === "win32"
? {
...process.env,
PATH: `${process.env.PATH};${lib}`,
}
: {
...process.env,
LD_LIBRARY_PATH: lib,
};
const ffmpegBinary = path.join(process.cwd(), "remotion", "bin", "ffmpeg");
const exit1 = spawnSync(ffmpegBinary, ["-buildconf"], {
env,
});
if (exit1.status !== 0) {
console.log(exit1.stderr.toString("utf8"));
console.log(exit1.stdout.toString("utf8"));
}
assert(exit1.status === 0);
const exit2 = spawnSync(
ffmpegBinary,
["-i", "sample-5s.webm", "-t", "1", "out-test.mp4", "-y"],
{
env,
}
);
assert(exit2.status === 0);
const exit3 = spawnSync(
ffmpegBinary,
[
"-i",
"sample.mp4",
"-t",
"1",
"-c:v",
"libvpx",
"-c:a",
"libopus",
"out-test.webm",
"-y",
],
{
env,
stdio: "inherit",
}
);
assert(exit3.status === 0);
const exit4 = spawnSync(
ffmpegBinary,
[
"-i",
"sample.mp4",
"-f",
"image2",
"-frames:v",
"1",
"-vcodec",
"png",
"out-test.png",
"-y",
],
{
env,
}
);
assert(exit4.status === 0);
const exit5 = spawnSync(
ffmpegBinary,
[
"-i",
"sample.mp4",
"-f",
"image2",
"-frames:v",
"1",
"-vcodec",
"mjpeg",
"out-test.png",
"-y",
],
{
env,
}
);
assert(exit5.status === 0);
const exit6 = spawnSync(
ffmpegBinary,
[
"-i",
"sample-av1.webm",
"-f",
"image2",
"-frames:v",
"1",
"-vcodec",
"mjpeg",
"out-test-av1.png",
"-y",
],
{
env,
stdio: "inherit",
}
);
assert(exit6.status === 0);
console.log("Hooray!");