How to access uploaded file from multer?
问题 Im able to upload an image to S3 . Now, if the file selected is .gif , I want to be able to convert the .gif file to .mp4 and upload the converted file to S3 . I am able to convert a .gif to .mp4 with ffmpeg only if I give the path of the file. How do I access the uploaded file from Multer ? Below is my code : var express = require('express'); var bodyParser = require('body-parser'); var app = express(); var aws = require('aws-sdk'); var multer = require('multer'); var multerS3 = require(