Last active
September 29, 2020 06:11
-
-
Save kuroski/e9200f737c3925d809053fe07f8878c6 to your computer and use it in GitHub Desktop.
This is just a basic function to handle mov to gif conversion in a lambda function
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fs = require("fs"); | |
const path = require("path"); | |
const ffmpegStatic = require("ffmpeg-static"); | |
const ffmpeg = require("fluent-ffmpeg"); | |
ffmpeg.setFfmpegPath(ffmpegStatic); | |
const allowCors = fn => async (req, res) => { | |
res.setHeader("Access-Control-Allow-Credentials", true); | |
res.setHeader("Access-Control-Allow-Origin", "*"); | |
res.setHeader( | |
"Access-Control-Allow-Methods", | |
"GET,OPTIONS,PATCH,DELETE,POST,PUT" | |
); | |
res.setHeader( | |
"Access-Control-Allow-Headers", | |
"X-CSRF-Token, X-Requested-With, Accept, Accept-Version, Content-Length, Content-MD5, Content-Type, Date, X-Api-Version" | |
); | |
if (req.method === "OPTIONS") { | |
res.status(200).end(); | |
return; | |
} | |
return await fn(req, res); | |
}; | |
module.exports = allowCors((req, res) => { | |
const form = new multiparty.Form(); | |
const outputPath = path.join("/", "tmp", "./output.gif"); | |
form.parse(req, function(_err, _fields, files) { | |
ffmpeg(files.file[0].path) | |
.on("end", function() { | |
res.setHeader("Content-disposition", "attachment; filename=output.gif"); | |
const readStream = fs.createReadStream(outputPath); | |
readStream.on("open", function() { | |
res.setHeader("Content-type", "image/gif"); | |
readStream.pipe(res); | |
}); | |
}) | |
.save(outputPath); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment