-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathffmpeg_command.ts
124 lines (118 loc) · 3.79 KB
/
ffmpeg_command.ts
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 { Encoding } from "./encoding.ts";
import {
FFmpegBaseOptions,
FFmpegBaseParameters,
} from "./encoding_base_parameters.ts";
import { FFmpegInputParameters } from "./encoding_input_parameters.ts";
import { FFmpegOutputParameters } from "./encoding_output_parameters.ts";
export class FFmpegCommand {
#args: Array<string> = [];
constructor(encoding: Encoding, silent?: boolean) {
this.#setOptions(encoding, silent);
}
toArray(): Array<string> {
return this.#args;
}
#setOptions = (encoding: Encoding, silent?: boolean) => {
this.#args.push(encoding.binary, "-hide_banner");
this.#setInputOptions(encoding.inputOptions);
this.#args.push("-i", encoding.input);
if (!silent) {
!silent && this.#args.push("-progress", "-", "-nostats");
}
if (encoding.threads) {
this.#args.push("-threads", encoding.threads.toString());
}
if (encoding.logLevel) {
this.#args.push("-loglevel", encoding.logLevel);
}
this.#setOutputOptions(encoding.outputOptions);
if (encoding.output) {
this.#args.push(encoding.output);
}
};
#setInputOptions = (options: FFmpegInputParameters) => {
this.#setBaseOptions(options);
};
#setOutputOptions = (options: FFmpegOutputParameters) => {
// this.#args.push("-map_metadata", "0");
// this.#args.push("-movflags", "use_metadata_tags");
this.#args.push(options.override ? "-y" : "-n");
if (options.audioBitrate) {
let audioBitrate: string = options.audioBitrate.toString();
if (!isNaN(Number(audioBitrate))) {
audioBitrate += "k";
}
this.#args.push("-b:a", audioBitrate);
}
if (options.videoBitrate) {
let videoBitrate: string = options.videoBitrate.toString();
if (!isNaN(Number(videoBitrate))) {
videoBitrate += "k";
}
this.#args.push("-b:v", videoBitrate);
}
if (options.minVideoBitrate) {
this.#args.push("-minrate", options.minVideoBitrate.toString());
}
if (options.maxVideoBitrate) {
this.#args.push("-maxrate", options.maxVideoBitrate.toString());
}
if (options.videoBufSize) {
this.#args.push("-bufsize", options.videoBufSize.toString());
}
if (options.frames) {
this.#args.push("-vframes", options.frames.toString());
}
if (options.audioQuality) {
this.#args.push("-q:a", options.audioQuality.toString());
}
if (options.loop) {
this.#args.push("-loop", options.loop.toString());
}
if (options.width || options.height) {
const width: string | number = options.width ?? -1;
const height: string | number = options.height ?? -1;
this.#args.push("-vf", `scale=${width}:${height}`);
}
// if (options.rotate) {
// this.#args.push("-metadata:s:v", `rotate=${options.rotate.toString()}`);
// }
this.#setBaseOptions(options);
};
#setBaseOptions = (options: FFmpegBaseParameters<FFmpegBaseOptions>) => {
if (options.audioChannels) {
this.#args.push("-ac", options.audioChannels.toString());
}
if (options.audioCodec) {
this.#args.push("-acodec", options.audioCodec);
}
if (options.codec) {
this.#args.push("-codec", options.codec);
}
if (options.duration) {
this.#args.push("-t", options.duration.toString());
}
if (options.format) {
this.#args.push("-f", options.format);
}
if (options.frameRate) {
this.#args.push("-r", options.frameRate.toString());
}
if (options.noAudio) {
this.#args.push("-an");
}
if (options.noVideo) {
this.#args.push("-vn");
}
if (options.sampleRate) {
this.#args.push("-ar", options.sampleRate.toString());
}
if (options.videoCodec) {
this.#args.push("-vcodec", options.videoCodec);
}
if (options.args) {
this.#args.push(...options.args);
}
};
}