-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommands.js
231 lines (191 loc) · 6.52 KB
/
commands.js
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
const config = require('./config')
const path = require('path')
const fse = require('fs-extra')
const ffmpeg = require('fluent-ffmpeg')
const process = require('process')
const glob = require('glob')
//!!! add a progress bar
// https://www.npmjs.com/package/progress
// https://github.com/fluent-ffmpeg/node-fluent-ffmpeg#progress-transcoding-progress-information
//instead of passing "program" around we should pass a config object
//not all commands depend on metadata - make that part of the command
// so command signature should be just (filename, config) => Promise
//assert that the ffmpeg path is configured
config.requireFfmpeg()
//paths to the ffmpeg binaries for fluent-ffmpeg
ffmpeg.setFfmpegPath(config.ffmpegPath)
ffmpeg.setFfprobePath(config.ffprobePath)
//syncronously expands each of the given arguments into an array of matched filenames
//!!! this could be improved by running each glob expansion in parallel
function expandGlobsSync(args) {
return args
//expand each globbed argument
.map(arg => glob.sync(arg, {}))
//flatten the array
.reduce((a,b) => a.concat(b), [])
}
//ensure that the output folder exists
function ensureOutputFolder(options) {
const outputPath = path.join(process.cwd(), options.outputFolder)
//ensure that output path exists
try {
fse.ensureDirSync(outputPath)
}
catch (ex) {
console.log("Error creating output folder: ", err)
process.exit(1)
}
}
function addSuffix(filename, suffix) {
const ext = path.extname(filename)
const basename = path.basename(filename, ext)
const dirname = path.dirname(filename)
const newFilename = path.join(dirname, basename+"-"+suffix+ext)
return newFilename
}
function changeFolder(filename, folder) {
const ext = path.extname(filename)
const basename = path.basename(filename, ext)
const oldDirname = path.dirname(filename)
const newFilename = path.join(folder, basename+ext)
return newFilename
}
function changeExtension(filename, ext) {
const oldExt = path.extname(filename)
const basename = path.basename(filename, oldExt)
const dirname = path.dirname(filename)
const newFilename = path.join(dirname, basename+ext)
return newFilename
}
//returns the output filename for the given input filename and options
//options specify an outputFolder and outputSuffix, which are combined with the input filename
function getOutputFilename(options, filename) {
const basename = path.basename(filename)
const outputPath = path.join(process.cwd(), options.outputFolder) //??? do we need the process.cwd() in the path?
let outputFilename = path.join(outputPath, basename)
if (options.outputExtension)
outputFilename = changeExtension(outputFilename, options.outputExtension)
if (options.outputSuffix)
outputFilename = addSuffix(outputFilename, options.outputSuffix)
return outputFilename
}
function applyFiltersAsync (options, filename, filters) {
const outputFilename = getOutputFilename(options, filename)
if (options.verbose)
console.log(`Applying filters to ${filename}, writing to ${outputFilename}`)
//returns a promise that resolves or rejects according to the results of the filters
return new Promise( function (resolve, reject) {
ffmpeg(filename)
.videoFilter(filters)
.on('error', err => reject(err))
.on('end', () => resolve())
.save(outputFilename)
})
}
//wraps the ffprobe function of the fluent-ffmpeg module in a promise
function getMetadataAsync (options, filename) {
if (options.verbose)
console.log(`Getting metadata for ${filename}`)
//returns a promise that resolves or rejects according the the results of the probe
return new Promise (function (resolve, reject) {
ffmpeg.ffprobe(filename, (err, metadata) => {
if (err)
reject(err)
resolve(metadata)
})
})
}
//command is a function with the signature (options, filename, metadata) => Promise
function runCommandAsync (options, filename, command) {
return getMetadataAsync(options, filename)
.then(metadata => command(options, filename, metadata))
.then( () => {
})
.catch( (err) => {
console.log("Error running command: ", err)
process.exit(1)
})
}
//runs the command on each file in the array
//command has the signature (options, filename, metadata)
//processes files one after the other
function runCommandAllSequential(options, filenames, command) {
//for each filename
filenames.reduce(
//wait for the previous file to complete
(promise, filename) => promise.then(
//then start processing the next file
() => runCommandAsync(options, filename, command)
)
//handle errors
.catch((err) => {
console.log("Error running command: ", err)
process.exit(1)
}),
//start with an empty promise
Promise.resolve()
)
}
//runs the command on each file in the array
//command has the signature (options, filename, metadata)
//processes files concurrently
function runCommandAllConcurrent(options, filenames, command) {
//for each filename
filenames.map(
//wait for the previous file to complete
(filename) => runCommandAsync(options, filename, command)
//handle errors
.catch((err) => {
console.log("Error running command: ", err)
process.exit(1)
})
)
}
function runCommandAllConcurrentBatches(options, filenames, command, batchSize=0) {
//split filenames up into batches
let batches = []
if (batchSize==0)
batches=[filenames]
else
batches = splitArray(filenames, batchSize)
//for each filename
batches.reduce(
//wait for the previous file to complete
(promise, batch) => promise.then( ()=>
//make a promise that will conclude when all the files are processed
Promise.all(batch.map(
//create a promise for each file and start running
(filename) => runCommandAsync(options, filename, command)
))
//handle errors
.catch((err) => {
console.log("Error running command: ", err)
process.exit(1)
})
),
//start with an empty promise
Promise.resolve()
)
}
function splitArray(input, maxLength) {
let count = Math.ceil(input.length/maxLength)
let output = []
for (var i=0; i<count; i++) {
output.push(input.slice(maxLength*i, maxLength*(i+1)))
}
return output
}
module.exports = {
getMetadataAsync,
applyFiltersAsync,
runCommandAsync,
runCommandAllSequential,
runCommandAllConcurrent,
runCommandAllConcurrentBatches,
ensureOutputFolder,
getOutputFilename,
changeExtension,
addSuffix,
changeFolder,
expandGlobsSync
}