I'm trying to use a JW player so that it can play MP4 videos in Firefox, but the problem is that it doesn't play MP4 in firefox, on the other hand, it works correctly on Chrome and IE9, here is my code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Jw player</title> <script src="http://jwpsrv.com/library/gQaACr0fEeKPFCIACqoQEQ.js"></script> </head> <body> <div id='my-video'></div> <script type='text/javascript'> jwplayer('my-video').setup({ file: 'http://content.bitsontherun.com/videos/lWMJeVvV-364767.mp4', image: 'http://www.longtailvideo.com/content/images/jw-player/lWMJeVvV-876.jpg', width: '640', height: '360' }); </script> </body> </html>
source share