﻿// JScript 文件
function ffmpeg(texts,playlist,width,height)
{
    //var texts='幸福的脚丫预告片|变形金刚预告片|江南MV|魔兽世界-晚安部落'
    //var playlist='http://www.ruochi.com/product/vcastr/flv/happy_feet.flv|http://www.transformersmovie.com/transformers_640.flv|http://www.ruochi.com/product/vcastr/flv/江南.flv|http://www.ruochi.com/product/vcastr/flv/晚安部落.flv'
    document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ width +'" height="'+ height +'">');
    document.write('<param name="movie" value="http://house.wxren.com/v/videos/FlvPlay/FlvPlay.swf"><param name="quality" value="high">');
    document.write('<param name="menu" value="false"><param name="allowFullScreen" value="true" />');
    document.write('<param name="FlashVars" value="vcastr_file='+playlist+'&vcastr_title='+texts+'">');
    document.write('<embed src="http://house.wxren.com/v/videos/FlvPlay/FlvPlay.swf" allowFullScreen="true" FlashVars="vcastr_file='+playlist+'&vcastr_title='+texts+'" menu="false" quality="high" width="'+ width +'" height="'+ height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'); 
    document.write('</object>');
}

function playList(texts,playlist,width,height)
{
    var str;
    
    
    //var texts='幸福的脚丫预告片|变形金刚预告片|江南MV|魔兽世界-晚安部落'
    //var playlist='http://www.ruochi.com/product/vcastr/flv/happy_feet.flv|http://www.transformersmovie.com/transformers_640.flv|http://www.ruochi.com/product/vcastr/flv/江南.flv|http://www.ruochi.com/product/vcastr/flv/晚安部落.flv'
    
    
    str='<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+ width +'" height="'+ height +'">';
    str +='<param name="movie" value="http://house.wxren.com/v/videos/FlvPlay/FlvPlay.swf?IsAutoPlay=1"><param name="quality" value="high">';
    str +='<param name="menu" value="false"><param name="allowFullScreen" value="true" />';
    str +='<param name="FlashVars" value="vcastr_file='+playlist+'&vcastr_title='+texts+'">';
    str +='<embed src="http://house.wxren.com/v/videos/FlvPlay/FlvPlay.swf?IsAutoPlay=1" allowFullScreen="true" FlashVars="vcastr_file='+playlist+'&vcastr_title='+texts+'" menu="false" quality="high" width="'+ width +'" height="'+ height +'" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />'; 
    str +='</object>';
    return str;
}

function Play(texts,playlist,width,height)
{   
    var str=playList("",playlist,width,height);
    document.getElementById("Div0").innerHTML=str;
    switchTag('tag0');
    ShowComment('');

}


