你好 我是新來的閃光燈,我試圖做一個簡單的視頻播放器。我有一個問題,設置視頻的來源:在我的動作腳本我有這樣的:Flash和php params交換
player.source='http://localhost/getVideo.php';
其中getVideo.php是:
<?php
echo file_get_contents('sas.mp4');
?>
這工作得很好,但是當我嘗試添加一些參數來player.source:
player.source='http://localhost/getVideo.php?asd=asdas';
我得到這個錯誤:
VideoError: 1005: Invalid xml: URL: "http://localhost/getVideo.php?asd=asdas&FLVPlaybackVersion=2.1" No root node found; if url is for an flv it must have .flv extension and take no parameters
我想要做的就是創建一個可以參數化視頻的播放器。 任何人都知道這個快速解決方案? 謝謝
好吧,我會嘗試第一個解決方案,第二個將是最簡單的,但我的網絡服務器沒有直接訪問我的視頻服務器,所以我需要這種方法。 – albanx 2011-02-09 14:12:59