Hello, I'm playing MP4s from Amazon S3 account via CloudFront. I was looking at 3 or 4 tutorials on how to do this and eventually I got it working with this :
<div id="container">Loading the player ...</div>
<script type='text/javascript' src='http://www.mysite.com/jwplayer/jwplayer.js'></script>
<script type="text/javascript">
jwplayer("container").setup({
flashplayer: "http://www.mysite.com/jwplayer/player.swf",
file: "movie.m4v",
image: "image.jpg",
height: 360,
provider: "rtmp",
streamer: "rtmp://s24p94cznbw22k.cloudfront.net/cfx/st",
width: 640
});
</script>
This works for the movie but the preview image doesn't work. I've tried with an full URL for the image and one like the above on the Amazon server.
JW Player is great by the way. I've just got this niggling last thing I can't sort out.

Do you have a link?