DEV Community

Discussion on: Image upload via buffer

Collapse
 
mfahlandt profile image
Mario

I use sharp for all imagetransformation in nodeJS before uploading them to any cloud based service. It works great and the ressources you need are very low

Collapse
 
diegoisco profile image
Diego Isco

Hi! Do you have a similar resource for transform videos? Thnxs

Collapse
 
mehraas profile image
Ashish Mehra

It is possible to implement something like this

sharp(inputBuffer)
  .resize(320, 240)
  .toBuffer()
Collapse
 
mfahlandt profile image
Mario

yes :)

Thread Thread
 
mehraas profile image
Ashish Mehra

thanks :-)