Hacker News new | ask | show | jobs
by view 1765 days ago
Thanks for the feedback! How long did it take you to implement this and are you also encoding videos for adaptive streaming?
2 comments

I had never worked with such API before so it took me roughly two days, the AWS documentation is abysmal, and I could've one that in just a few hours if only they cared about documenting their APIs better. My biggest mistake was going for a kind of presigned URL that was not giving me much control over the size of files sent (I don't find it anymore for some reason, looks like the documentation changed). Go with PresignedPost, it allows quite a lot of control and it's an amazing way to avoid load on your servers.

>are you also encoding videos for adaptive streaming?

Can't help you with that, I only worked with images, best of luck!

I have played around with AWS Elastic Transcoder: https://aws.amazon.com/elastictranscoder/

If video is of interest, I'd definitely take a look at that and see if it meets your needs. It's one of those specialized serverless offerings from AWS that you pay as you use.