I've tried many, many different configurations, files, encoding, browsers, etc..., but this is the simplest example that demonstrates the problem I am having.

If you paste the url for the sample video for JSPlayer in FF 8.0.1, the video plays inline:

http://video-js.zencoder.com/oceans-clip.webm

If I take that same video and upload it to my s3 bucket, it triggers download instead:

https://s3.amazonaws.com/turingvideos/oceans-clip.webm -- or -- http

(Permissions are read for everyone on the file and bucket)

So, let's try Cloud Front.

d2yat6m71lu23b dot cloudfront dot net slash oceans-clip.webm (download trigger)

And Cloud Front streaming:

strzsu4h2ax96 dot cloudfront dot net slash oceans-clip.webm (infinite spinner)

The same basic things happen when using an html video tag as well. Works fine from zencoder, borked on anything other than local disk read.

So, what magic is zencoder managing that is completely out of my reach with S3/CloudFront? I'm completely stumped.

Edit:

Setting the content type and disposition to "video/webm" and "inline" did the trick. Thanks for the quick response guys.

link|improve this question
Did you try setting the HTTP headers 'Content-Type' and 'Content-Disposition' on the files on S3? – Lior Cohen Jan 6 at 20:46
Just did as per suggestion below and that fixed it. thanks. – turing1 Jan 6 at 22:05
feedback

2 Answers

If I'm getting your problem correctly, this should be a simple enough fix.

Using the S3 web management console (https://console.aws.amazon.com/s3), select your bucket, right-click one of your video files, switch to the metadata tab and set 2 headers:

  • Content-Type: whatever your video file's content type is
  • Content-Disposition: inline

Also, make sure your CloudFront distribution is set as a "streaming" distribution and not a "download" one.

Edit:

From the AWS docs:

CloudFront servers don't determine the MIME type for the objects they serve. Therefore, when you upload an object to your origin, you should set the object's Content-Type header.

Source: http://docs.amazonwebservices.com/AmazonCloudFront/latest/DeveloperGuide/ObjectMIMEType.html

link|improve this answer
That did the trick. Thank you! – turing1 Jan 6 at 22:04
@turing1 - if this answer was the solution to your problem, you should mark it as the accepted answer (tick mark on the left under the votes) – Geoff Appleford Jan 8 at 21:03
feedback

Worked for me too. Here's another point. The s3 admin console has a meta drop down selection that does not offer things like "video/mp4", etc ... No problem though. You can just type your own into the drop down box. It took me a while to figure that out.

Thanks!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.