Install FFmpeg with homebrew. You'll need to install it with a couple flags for webm and the AAC audio codec.
brew install ffmpeg --with-libvpx --with-libvorbis --with-fdk-aac --with-opus
const normalize = (min, max, value) => { | |
if (value < min) return min | |
else if (value > max) return max | |
else return value | |
} | |
const splitChannels = (color, split) => { | |
color = color.replace(split, '').replace(')', '').trim() | |
let channels = color.split(',') |
module.exports = { | |
twitter: { | |
consumer_key: '', | |
consumer_secret: '', | |
token: '', | |
token_secret: '' | |
}, | |
tracking: { | |
dev: ['gobelinou', 'taratta'], | |
prod: ['gobelinou'] |