- UID
- 10253
- 帖子
- 3334
- 精华
- 0
- 贡献
- 20
- 推广
- 0
- 有效BUG
- 0
- 来自
- 江门·中国
- 注册时间
- 2006-4-28
|
45#
发表于 2006-10-20 19:50
| 只看该作者
10.20 增加对www.tudou.com的支持
由于脚本对POST方法不支持,网速慢的时候,这个脚本可能会导致假死....
使用方法:把以下代码贴到脚本的最后面,要另起一行
- function GetBufferInPost( bufferUrl,data)
- {
- xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
- xmlHttp.open("POST",bufferUrl,false);
- xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
- xmlHttp.send(data);
- return xmlHttp.responseText;
- }
- function tudouMedia(){
- strUrl=twSaveObjUrl%%s;
- if(-1!=strUrl.search(/http:\/\/www\.tudou\.com\/.*/)){
- var srcObj = document.getElementById(twObjectUID%%s)
- strRet = srcObj.childNodes(2).value
- strBuffer = GetBufferInPost("http://www.tudou.com/player/info.php",strRet);
- strBuffer = strBuffer.replace( /.*flv\|(http:.*\.flv).*$/,"$1")
- external.twMediaPath(window,strBuffer )
- }
- }
- tudouMedia();
复制代码
[ 本帖最后由 needed 于 2006-10-20 19:52 编辑 ] |
|