mirror of https://github.com/tycrek/ass
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
621 B
16 lines
621 B
const Vibrant = require('node-vibrant');
|
|
const { path, randomHexColour } = require('./utils');
|
|
const { s3enabled } = require('./config.json');
|
|
|
|
const COLOR_COUNT = 256;
|
|
const QUALITY = 3;
|
|
|
|
module.exports = (file) =>
|
|
new Promise((resolve, reject) =>
|
|
file.mimetype.includes('video')
|
|
? resolve(randomHexColour())
|
|
: Vibrant.from(s3enabled ? path('uploads/', file.originalname) : path(file.path))
|
|
.maxColorCount(COLOR_COUNT).quality(QUALITY).getPalette()
|
|
.then((palettes) => resolve(palettes[Object.keys(palettes).sort((a, b) => palettes[b].population - palettes[a].population)[0]].hex))
|
|
.catch(reject));
|