从Dropbox流式传输视频,以便它们可以显示在网页上

时间:2017-08-10 05:17:10

标签: php video-streaming

我使用PHP和MYSQL将视频输出到网页上。该网页不会在WordPress中创建。我的Dropbox帐户中存储了大约10个视频。如何将Dropbox中的视频流式传输到网页上?我希望用户能够在我的网页上观看视频。感谢您的时间和帮助。

这是代码:

    <!DOCTYPE html>
<html>
<head>
<title>Streaming videos from dropbox</title>
</head>
<body>

<?php

require_once('connection.php');

        if (isset($_GET['id'])) { 
        $id=intval($_GET['id']); 

         $con = mysqli_connect(DB_HOST, DB_USER, DB_PASSWORD, DB_NAME);
        $result=mysqli_query($con,"select * dropbox_video WHERE id=$id");
        if (mysqli_num_rows($result ) > 0) {
            $row=mysqli_fetch_array($result,MYSQLI_ASSOC);

    //loop vdeo. The row store dropbox URL      
echo '<iframe style="max-width:100%" allowfullscreen="true" src="'.$row["dropbox_video"].'" frameborder="0" scrolling="no" ></iframe>';


        }
        else{
            echo 'No data Found';

        }

    }




      ?>

</body>
</html>

0 个答案:

没有答案