它可能无法显示视频的原因

时间:2013-01-28 05:36:33

标签: javascript jquery html html5-video jwplayer

以下是在jwplayer视频播放器上播放视频的链接:VIDEO APPLICATION

你们不会播放视频并且看不出任何问题,你会看到它正在你的机器上运行。我的问题是它不能在我的机器上运行。我在ipad上测试了它,视频显示没有问题。

但是对于任何浏览器,chrome,firefox,opera,safari,即(即它表示播放器上有错误,我有ie 9)在我的机器上它不起作用。

但是我不知道是不是我的浏览器导致了这个问题,或者它是否是我的机器但我的问题是,你们可以给我推荐我可以在我的机器或浏览器上查看的内容,看看为什么视频我的机器上没有显示?

顺便提一下,视频的代码是:

<head>
    <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
    <title>Preview Video</title>
    <script type="text/javascript" src="jquery/jquery-1.7.min.js"></script>   
    <script type="text/javascript" src="jquery/jwplayer.js"></script>
    <script type="text/javascript" src="jquery/jwplayer.html5.js"></script>

</head>

<body>

<?php

$getvideo = 'VideoFiles/' . $_GET['filename'];

$videoquery = "SELECT VideoFile FROM Video WHERE (VideoFile = ?)";

        if (!$videostmt = $mysqli->prepare($videoquery)) {
        // Handle errors with prepare operation here
}


// Bind parameter for statement
$videostmt->bind_param("s", $getvideo);

// Execute the statement
$videostmt->execute();

            if ($videostmt->errno) 
            {
                // Handle query error here
            }

$videostmt->bind_result($dbVideoFile); 

$videostmt->fetch(); 

$videostmt->close(); 

?>

<div id="myElement">Loading the player...</div>

<?php echo 'This is the videoPath '.$dbVideoFile; ?>

<script type="text/javascript">
    jwplayer("myElement").setup({
        file: "<?php echo $dbVideoFile; ?>",
    });
</script>

</body>

0 个答案:

没有答案