Kubilay Bayraktar
Kubilay Bayraktar

Reputation: 73

How to get thumbnail of video which is uploaded on Amazon S3 Storage

We have a .NET project.

We're uploading video files directly to S3.

How can we create a thumbnail of the video which is located in S3 Storage.

Which service should we use, and can we do that in javasript or using AWSSDK library.

Since the video is not uploaded to our servers we need to find a way using services.

Upvotes: 3

Views: 9344

Answers (1)

John Rotenstein
John Rotenstein

Reputation: 270154

From AWS Developer Forums: How to create only one thumbnail per video, it appears that you could:

  • Use Amazon Elastic Transcoder to convert the video into thumbnails
  • Specify a huge thumbnail interval to force it to output only one thumbnail per video

Upvotes: 3

Related Questions