1

我正在尝试设置 Jwplayer 视频播放器,但没有出现任何内容,根本没有显示视频播放器。我按照说明在设置中做错了什么,但是视频文件来自数据库并且 mysqli 绝对正确:

    <head>
        <meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
        <title>Preview Video</title>
        <script type="text/javascript" src="jquery/jwplayer.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->fetch(); 

    $videostmt->close(); 

    ?>

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

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


**UPDATE:**

Current code:

<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>

</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(); 

$videoPath='http://domain.com/videos/'.$dbVideoFile;

$videostmt->close(); 

?>

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

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

</body>

好的,发生的事情是,当我使用 $GET 方法从前一页(使用超链接)获取视频的文件名时,它会打开一个新页面,并且 url 是这样的:

http://helios.hud.ac.uk/u05454444/Mobile_app/previewvideo.php?filename=sample_mpeg4_5.mp4

在数据库中,当我尝试检索视频文件时,它以VideoFiles/sample_mpeg4_5.mp4.

这是因为视频存储在VideoFiles文件夹中

现在它显示一个黑色方块,视频播放器应该在其中说明:

Error loading player:
No playable sources found

我是否需要包含 的 js 文件jwplayer.html5.js,我是否缺少任何其他可能需要的文件,或者是其他什么问题?

萤火虫:

使用 Firebug,我在下面有以下 HTML,其中包含显示视频播放器的 html:

<div style="position: absolute;">
    <object id="_GPL_swf" width="1" height="1" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0"
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
        <param value="http://shoppingside-a.akamaihd.net/items/it/swf/f.swf" name="movie">
        <param value="high" name="quality">
        <param value="transparent" name="wmode">
        <param value="always" name="allowScriptAccess">
        <param value="keywordsURL=http%3A//i.trkjmp.com/kwd%3Fc%3DOjo6aGVsaW9zLmh1ZC5hYy51azp6LTEyMjItMTIwODcw%26cb%3D_GPL.items.a652c.displayKeywords&keywords=error%20loading%20player%7Cno%20playable%20sources%20found"
        name="flashVars">
        <object id="_GPL_swf" width="1" height="1" type="application/x-shockwave-flash"
        data="http://shoppingside-a.akamaihd.net/items/it/swf/f.swf">
            <param value="high" name="quality">
            <param value="transparent" name="wmode">
            <param value="always" name="allowScriptAccess">
            <param value="keywordsURL=http%3A//i.trkjmp.com/kwd%3Fc%3DOjo6aGVsaW9zLmh1ZC5hYy51azp6LTEyMjItMTIwODcw%26cb%3D_GPL.items.a652c.displayKeywords&keywords=error%20loading%20player%7Cno%20playable%20sources%20found"
            name="flashVars">
        </object>
    </object>
</div>
<div id="_GPL_e6a00_parent_div" style="position: absolute; top: 0px; left: 0px; width: 1px; height: 1px; z-index: 2147483647;">
    <object id="_GPL_e6a00_swf" width="1" height="1" type="application/x-shockwave-flash"
    data="http://shoppingside-a.akamaihd.net/items/e6a00/storage.swf">
        <param name="wmode" value="transparent">
        <param name="allowscriptaccess" value="always">
        <param name="flashvars" value="logfn=_GPL.items.e6a00.log&onload=_GPL.items.e6a00.onload&onerror=_GPL.items.e6a00.onerror&LSOName=gpl">
    </object>
</div>
<div id="myElement" style="width: 480px; height: 270px; background-color: rgb(0, 0, 0); color: rgb(255, 255, 255); display: table; opacity: 1;">
    <p style="vertical-align: middle; text-align: center; display: table-cell; font: 15px/20px Arial,Helvetica,sans-serif;">Error loading player:
        <br>No playable sources found</p>
</div>
<script type="text/javascript">
    jwplayer("myElement").setup({
        file: "<php echo $videoPath ?>",
        image: "example.jpg",
    });

图片:

下面是显示图像代码:

如果我选择一个称为 的超链接Tulips_3.png,则 url 显示在 url 中是这样的:

http://helios.hud.ac.uk/u05545444/Mobile_app/previewimage.php?filename=Tulips_3.jpg

然而,我所做的只是使用 get 方法检索文件名,在数据库中找到图像及其目录在前面ImageFiles/,因为数据库中的图像保存为ImageFiles/Tulips_3.png,然后使用源显示图像,代码如下:

    <body>

    <?php

    $getimage = 'ImageFiles/' . $_GET['filename'];

    $imagequery = "SELECT ImageFile FROM Image WHERE (ImageFile = ?)";

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


    // Bind parameter for statement
    $imagestmt->bind_param("s", $getimage);

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

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


$imagestmt->bind_result($dbImageFile);

$imagestmt->fetch(); 

$imagestmt->close(); 

?>

<p><img alt="<?php echo $dbImageFile; ?>" height="200" width="200" src="<?php echo $dbImageFile; ?>"></p>


    </body>
4

2 回答 2

1

更新 2

<script type="text/javascript">

jwplayer("myElement").setup({
    file: "<?php echo $dbVideoFile; ?>",
    image: "example.jpg",
});
</script>

echo 'this is $dbVideoFile: '.$dbVideoFile;

输出:这是 $dbVideoFile: VideoFile‌​s/sample_mpeg4_5.mp4`

希望有帮助。

于 2013-01-27T17:50:46.680 回答
0

您的脚本中有错字:

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

应该:

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

注意额外的问号“?” 在起始 php-tag 中。

于 2013-06-03T05:31:03.277 回答