09/09/13 17:35:35 ECdHcSq4
できました。irvファイルは生成されるんですけど、ダウンロードが開始しないです。どうしたらいいですか?
//Dorothy2
//caption=openv.com
//version=090913-1
//match=URLリンク(hd.openv.com)
//author=test
//path=program
//end
function(){
common_load('download','fileSave','dummy_url','StringExtension');
urlinfo.url.match('mov_play-(.*)\.html');
var id = RegExp.$1;
var url = 'URLリンク(casting.openv.com)' + id + '¶=tv=0,vtype=1,hd=1,random=2110605622,category=,channel=3';
var http = download( url );
if(http.responseHeader.code != 200){ return retry('error---> ' + http.responseHeader.code); }
var all,i;
var t_item = new IrvineItem();
var list = new Strings();
all = http.data.match(/flvpath>http.*?\.mp4/g);
for(i in all){
all[i].match(/(http.*?\.mp4)/g);
t_item.url = RegExp.$1;
t_item.filename = id + '_' +i;
list.add(t_item.data); }
println('items - ' + all.length);
fileSave('openv.com_list_' + id + '.irv' , list);
dummy_url();
Dorothy.fileName = 'remove'; }