-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathindex.js
81 lines (67 loc) · 1.69 KB
/
index.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
'use strict'
const ffmpeg = require('fluent-ffmpeg')
const path = require('path')
const probe = require('ffmpeg-probe')
const noop = () => { }
module.exports = async (opts) => {
const {
log = noop,
// required
input,
output,
// optional
timestamps,
offsets,
fps,
numFrames,
ffmpegPath
} = opts
if (!input) throw new Error('missing required input')
if (!output) throw new Error('missing required output')
const outputPath = path.parse(output)
if (ffmpegPath) {
ffmpeg.setFfmpegPath(ffmpegPath)
}
const cmd = ffmpeg(input)
.on('start', (cmd) => log({ cmd }))
if (timestamps || offsets) {
const folder = outputPath.dir
const filename = outputPath.base
return new Promise((resolve, reject) => {
cmd
.on('end', () => resolve(output))
.on('error', (err) => reject(err))
.screenshots({
folder,
filename,
timestamps: timestamps || offsets.map((offset) => offset / 1000)
})
})
} else {
if (fps) {
cmd.outputOptions([
'-r', Math.max(1, fps | 0)
])
} else if (numFrames) {
const info = await probe(input)
const numFramesTotal = parseInt(info.streams[0].nb_frames)
const nthFrame = (numFramesTotal / numFrames) | 0
cmd.outputOptions([
'-vsync', 'vfr',
'-vf', `select=not(mod(n\\,${nthFrame}))`
])
}
if (outputPath.ext === '.raw') {
cmd.outputOptions([
'-pix_fmt', 'rgba'
])
}
return new Promise((resolve, reject) => {
cmd
.on('end', () => resolve(output))
.on('error', (err) => reject(err))
.output(output)
.run()
})
}
}