<script src="/tvgo/1-swfobject.js"></script><div id="a1" >
</div>
<script>
    var flashvars = {
        // M3U8 url, or any other url which compatible with SMP player (flv, mp4, f4m)
        // escaped it for urls with ampersands
        src: escape("http://pili-playback.livexianyang.sobeycache.com/xianyang/zb01.m3u8"),
        // url to OSMF HLS Plugin
        plugin_m3u8: "/tvgo/1-HLSProviderOSMF.swf",
    };
    var params = {
        // self-explained parameters
        allowFullScreen: true,
        allowScriptAccess: "always",
        bgcolor: "#000000"
    };
    var attrs = {
        name: "a1"
    };    swfobject.embedSWF(
        // url to SMP player
        "/tvgo/1-StrobeMediaPlayback.swf",
        // div id where player will be place
        "a1",
        // width, height
        "600", "400",
        // minimum flash player version required
        "10.2",
        // other parameters
        null, flashvars, params, attrs
    );
</script>上面播放器代码是网上找的,能够实现手动播放,现在要实现自动开始播放,估计是要在这里加一句话。 var params = {
        // self-explained parameters
        allowFullScreen: true,
        allowScriptAccess: "always",
        bgcolor: "#000000"
    };play: true, autoplay: true,  autostart: true, isautoplay: true, isautostart: true, 都试过了,不行。