㈠ php+html能夠實現視頻的在線 播放嗎
1、通過網頁(HTML5)調用攝像頭,通過websocket傳輸給PHP後端(workerman), 再由後端廣播給所有在線播放網頁,觀看者可以通過這個播放頁面實時觀看攝像頭拍攝的內容。
2、
可以通過html版本的flash播放器
<p id="player3">
<a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var s1 = new SWFObject("flvplayer.swf","single","300","170","7");
s1.addParam("allowfullscreen","true");
s1.addVariable("file","videos /ld.Flv");//這邊是視頻在本地的路徑
s1.addVariable("image"," videos/ld.jpg");//這邊是你的視頻的截圖
s1.addVariable("width","300");
s1.addVariable("height","170");
s1.write("player3");
</script>
通常是用flv 播放器。
3、你可以直接把視頻的這段html代碼弄過來。
<embed src="http://player.youku.com/player.php/sid/XNDc4NDU1NjAw/v.swf" allowFullScreen="true" quality="high" width="480" height="400" align="middle" allowScriptAccess="always" type="application/x-shockwave-flash"></embed>
,搞個層,點擊時候,彈出這個視頻。
㈡ 怎麼用php獲取遠程端的json數據,不會用,求大神解釋
file_get_contents是可以的,
<?php
echo"<metahttp-equiv='Content-Type'content='text/html;charset=utf-8'/>";
$m=file_get_contents("https://openapi.youku.com/v2/videos/show_basic.json?video_id=XOTQ1NDU5ODk2&client_id=319cdac7553fa298");
print_r(json_decode($m));
?>
輸出結果:
㈢ PHP中調用視頻
你這個好像沒有錯誤啊! 我直純橘拿接做搭在本機上都是正常的啊! 檢查下你伺服器的伍沒配置,看是否正確添加了mime類型
㈣ 怎麼查看優酷視頻地址
查看優酷視頻地址方法:
優酷真實的視頻播放地址有統一的格式,如下:
格式一:
http://player.youku.com/player.php/sid/xxxxxxxxx/v.swf
格式二:
http://player.youku.com/embed/xxxxxxxxxxxx
1.其中xxxxxxxxxx就是對應的視頻的id,因此先把視頻的ID先復制下來;