-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgenerateHoverThumbnail.js
224 lines (192 loc) · 5.68 KB
/
generateHoverThumbnail.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
const ffmpeg = require('fluent-ffmpeg');
const which = require('which')
const path = require('path')
const ffprobe = require("ffprobe");
const fs = require("fs-extra");
let l = console.log;
const getExt = path.extname;
const ffprobePath = which.sync('ffprobe')
/** default values **/
// haven't fully massaged these, but generally should be OK quality at ~100-150kb
const QUALITY = 70; // Set compression of webp images between 1-100 with 100 being perfect.
const FRAMERATE = 6;
const WIDTH = 320;
const HEIGHT = 180;
async function generateHoverThumbnail({
inputFilePath,
outputFolder,
filename,
quality,
framerate,
width,
height,
debug
}){
if(!debug) l = function(){};
try {
const fileExtension = getExt(inputFilePath);
const ffprobeResponse = await ffprobe(inputFilePath, { path: ffprobePath });
const videoStream = ffprobeResponse.streams.filter(stream => stream.codec_type === 'video')[0];
const videoDurationInSeconds = Math.ceil(Number(videoStream.duration));
l(`Video duration in seconds: ${videoDurationInSeconds}`);
const { timeToTrimInSeconds, startingTimeInSeconds } = determineStartingTimeAndSeconds(videoDurationInSeconds);
l(`timeToTrimInSeconds: ${timeToTrimInSeconds}`);
l(`startingTimeInSeconds: ${startingTimeInSeconds}`);
const trimmedFilePath = `${outputFolder}/${filename}-trimmed${fileExtension}`;
await trimFile({
inputFilePath,
outputFilePath: trimmedFilePath,
timeToTrimInSeconds,
startingTimeInSeconds
})
const spedUpFilePath = `${outputFolder}/${filename}-sped-up${fileExtension}`;
await speedUpFile({
inputFilePath: trimmedFilePath,
outputFilePath: spedUpFilePath,
})
// load from the defaults if not received from the cli
quality = quality || QUALITY;
framerate = framerate || FRAMERATE;
width = width || WIDTH;
height = height || HEIGHT;
l(`quality: ${quality}`);
l(`framerate: ${framerate}`);
l(`width: ${width}`);
l(`height: ${height}`);
const hoverThumbnailFilePath = `${outputFolder}/${filename}.webp`;
await generateHoverPreviewThumbnail({
inputFilePath: spedUpFilePath,
outputFilePath: hoverThumbnailFilePath,
quality,
framerate,
width,
height,
})
if(!debug){
fs.remove(spedUpFilePath);
fs.remove(trimmedFilePath)
}
} catch (err){
l(err)
throw new Error(err);
}
}
function determineStartingTimeAndSeconds(videoLengthInSeconds){
let startingTimeInSeconds, timeToTrimInSeconds;
if(videoLengthInSeconds <= 5){
startingTimeInSeconds = 0;
timeToTrimInSeconds = videoLengthInSeconds
} else {
startingTimeInSeconds = Math.floor(videoLengthInSeconds / 4);
timeToTrimInSeconds = 5;
}
return {
startingTimeInSeconds,
timeToTrimInSeconds
}
}
/**
*
* @param inputFilePath
* @param outputFilePath
* @param timeToTrimInSeconds
* @param startingTimeInSeconds
* @returns {Promise<unknown>}
*/
async function trimFile(
{
inputFilePath, outputFilePath, timeToTrimInSeconds, startingTimeInSeconds
}
){
return new Promise(function (resolve, reject) {
ffmpeg(inputFilePath)
.outputOptions(`-vcodec libx264`)
.outputOptions(`-an`)
.outputOptions(`-ss ${startingTimeInSeconds}`) // where to start the trim
.outputOptions(`-t ${timeToTrimInSeconds}`) // should always be 5 seconds trimmed
.on('start', function (commandLine) {
l('Spawned Ffmpeg with command: ' + commandLine);
})
.on('error', function (error) {
console.log(error);
return reject(new Error(error))
})
.on('progress', function (progress) {
l(`PROGRESS: ${Math.ceil(progress.percent)}%`);
})
.on('end', async () => {
l('Processing finished !');
resolve('success');
}).save(outputFilePath);
})
}
/**
*
* @param inputFilePath
* @param outputFilePath
* @returns {Promise<unknown>}
*/
async function speedUpFile(
{
inputFilePath, outputFilePath
}
){
return new Promise(function (resolve, reject) {
ffmpeg(inputFilePath)
.outputOptions(`-vf setpts=0.5*PTS`) // speeds up 2x speed
.on('start', function (commandLine) {
l('Spawned Ffmpeg with command: ' + commandLine);
})
.on('error', function (error) {
console.log(error);
return reject(new Error(error))
})
.on('progress', function (progress) {
l(`PROGRESS: ${Math.ceil(progress.percent)}%`);
})
.on('end', async () => {
l('Processing finished !');
resolve('success');
}).save(outputFilePath);
})
}
/**
*
* @param inputFilePath
* @param outputFilePath
* @param quality
* @param framerate
* @param height
* @param width
* @returns {Promise<unknown>}
*/
async function generateHoverPreviewThumbnail(
{
inputFilePath, outputFilePath, quality, framerate, height, width
}
){
return new Promise(function (resolve, reject) {
ffmpeg(inputFilePath)
.outputOptions(`-vcodec libwebp`)
.outputOptions(`-vf fps=${framerate},scale=${width}:${height}`)
// .outputOptions(`-preset default`)
.outputOptions(`-loop 0`)
.outputOptions(`-vsync 0`)
.outputOptions(`-qscale ${quality}`)
.on('start', function (commandLine) {
l('Spawned Ffmpeg with command: ' + commandLine);
})
.on('error', function (error) {
console.log(error);
return reject(new Error(error))
})
.on('progress', function (progress) {
l(`PROGRESS: ${Math.ceil(progress.percent)}%`);
})
.on('end', async () => {
l('Processing finished !');
resolve('success');
}).save(outputFilePath);
})
}
module.exports = generateHoverThumbnail