This is a tell-tale scenario of your server not understanding the mime-types of the m4v file , therefore telling you "hey, you should download this" ! Understandably since the server does not know what the file is then jPlayer will not be much use :D
Easily fixed by going into your web hosting control panel if they allow you to do that :P
Or.... add the following lines to your .htaccess file or create one if it does not exist
AddType video/mp4 .mp4
AddType video/mp4 .m4v
AddType video/webm .webm
AddType video/ogg .ogv
The webm and ogv are optional
lastly make sure the path/url to the video is also correct ;)
Hope that helps
Or.... add the following lines to your .htaccess file or create one if it does not exist
AddType video/mp4 .mp4
AddType video/mp4 .m4v
AddType video/webm .webm
AddType video/ogg .ogv
lastly make sure the path/url to the video is also correct ;)