如何使用video.js播放器播放.SWF文件?
我已经尝试了下面的代码,但是我不能让它工作。
当我直接打开.swf文件(使用IE打开)时,我就能够以这种方式播放.swf文件。
JavaScript:
// path to location of swf-file
_V_.options.flash.swf = "video-js.swf";
// flashvars
_V_.options.flash.flashVars = {
file: "./ExportSWF/Recording.swf", //file to be played
au
我带着另一个问题回来了!
我正在尝试创建一个应用程序,将列出一个选定的直播流,从Own3d.TV,Justin.Tv等…
如果我的研究没有完全失败,我可以使用MediaPlayer对象来流式传输视频,唯一的问题是我如何使用它?
到目前为止,我的代码看起来是这样的,但是在尝试准备MediaPlayer时,它给了我一个异常。
public class Media extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanc
我正在尝试让node.js服务器发送css文件。我在这里修改这个服务器:
我所做的事情有什么问题:
server = http.createServer(function(req, res){
// your normal server code
var path = url.parse(req.url).pathname;
switch (path){
case '/':
res.writeHead(200, {'Content-Type': 'text/html'});
在我的代码中有初始化函数
html
<embed id="SoundsObj"........
js
var SoundsObj = document.getElementById('SoundsObj');
function GetSoundsObj(){
alert(top.SoundsObj.SndPlay); //I can see it has initialized itself
}
as3
ExternalInterface.call("GetSoundsObj");
我很好奇,有没有可能在JS中传递swf object作为
HTML
<div id="div" tabindex="1">Div</div>
<object id="swf" tabindex="1"><!--Embedded with swfobject--></object>
JS
//This works, so it looks like focus should work an any element with tabindex set
$('#div').on('focus', fun