使用codeigniter的视频mp4无效

时间:2013-11-29 09:19:08

标签: php codeigniter

在下面的codeigniter代码中,我放置了控制器和视图。我的目标是观看视频但是视频无法正常工作。如果我将视图部分分别放在Dreamweaver中,其working.pls帮助我解决问题。 控制器:

<?php

class Video extends CI_Controller {

    function index()
    {


        $this->load->view('video_view');    

    }



}

视图:

<!DOCTYPE html>
<html>
<body>

<video width="320" height="240" controls autoplay>
  <source src="seatapp.mp4" type="video/mp4">
  

</video>

</body>
</html>

0 个答案:

没有答案