JWplayer。使用http请求更改目标源

时间:2014-12-11 10:46:31

标签: actionscript-3 jwplayer

我从github获得了jwplayer源代码。我想改变一些脚本并构建播放器。所以,我需要在flash中从javascript更改文件源。在javascript中,我设置了一些参数" host"和" flv_id":

jwplayer("mediaplayer").setup({
    autostart: false,
    controlbar: "none",
    displayclick: "none",
    smoothing: true,
    stretching: "exactfit",
    icons: false,
    flashplayer: "/jwplayer.swf",
    file: "/videos/3aae1ef41d.flv",
    flv_id: "115554",
    host: "<?php echo $host; ?>",
    provider: "http",
    startparam: "start",
    height: 400,
    width: 650,
    events: {
        onComplete: function() {
        },
        onPause: function(event) {
        },
        onError: function() {
        }
    }
});

在flash中我有一些类,可以发出请求后的信息:

var post:Post = new Post("http://"+someparameters["host"]+"/video/flv");
post.variables.id = someparameters["flv_id"];
post.Send(Go);

Go - 是成功回调函数,返回一些flvlink。

Go(link:String):void { 
      //link - is source, that i need to play 
}

玩家正在播放&#34; /videos/3aae1ef41d.flv"。但我想从Go()中播放源代码;我上课了#34; Post&#34;,但我不知道粘贴我的代码的地方。现在,我没有对默认源代码进行任何更改。我不知道要编辑哪个播放器源代码文件。所以,我需要知道,我如何使用我的&#34; Post&#34;从Go功能播放视频的课程。

0 个答案:

没有答案