「ziyunet.dms」の版間の差分
提供: Yourpedia
Mario Yonezawa (トーク | 投稿記録) 細 (報復のための実験。どうせウェブ廃墟だし。) |
細 (Mario Yonezawa (トーク) による版 363291 を取り消し) |
||
| 1行目: | 1行目: | ||
| − | + | [[Irvine]]を使って[[imgb1.ziyu.net]]の画像を落とすためのスクリプト。サムネイル画像が表示されるページから「IrvineへすべてのURLを送る」で使う。 | |
#[ttp://mxmkitchen.com/2009/03/13/2357.php ここ]からIrvineと[[Dorothy2]].zipをDL、インストールする | #[ttp://mxmkitchen.com/2009/03/13/2357.php ここ]からIrvineと[[Dorothy2]].zipをDL、インストールする | ||
#「(Irvineが有るフォルダ)¥Dorothy2¥program¥」に「ziyunet.dms」を以下の内容で作成する | #「(Irvineが有るフォルダ)¥Dorothy2¥program¥」に「ziyunet.dms」を以下の内容で作成する | ||
| 46行目: | 46行目: | ||
</nowiki></pre> | </nowiki></pre> | ||
| − | [[Category:Irvine用スクリプト]] | + | [[Category:Irvine用スクリプト]] |
2019年2月7日 (木) 23:37時点における最新版
Irvineを使ってimgb1.ziyu.netの画像を落とすためのスクリプト。サムネイル画像が表示されるページから「IrvineへすべてのURLを送る」で使う。
- [ttp://mxmkitchen.com/2009/03/13/2357.php ここ]からIrvineとDorothy2.zipをDL、インストールする
- 「(Irvineが有るフォルダ)¥Dorothy2¥program¥」に「ziyunet.dms」を以下の内容で作成する
- Irvineを起動後、上記サイトに出てる設定を行う
- 「ツール」→「メインメニュー」→「動画ダウンロード2設定」で「imgb1.ziyu.net」にチェックを入れて、「ファイル」→「保存して終了」をクリック、それ以外は同様
- 後は、ほぼ上記サイトの説明通り
//Dorothy2
//caption=imgb1.ziyu.net
//version=0.01
//hint=imgb1.ziyu.netのサムネイルページからURLを渡してください
//match=http://imgb1.ziyu.net/
//author=Abcdefgh
//path=program
//priority=500
//end
//created 15,Mar.,2011 by Abcdefgh
//ファイル名の単純変換が不可能な為
function(){
println('ziyunet.dms start');
// 画像紹介ページをダウンロード
common_load('download');
var http = download(urlinfo.url);
if(http.responseHeader.code != 200){
return retry('error--->' + http.responseHeader.code);
}
// 本画像URLを抽出
if (!http.data.match(/IMG SRC=\'([^']+)\'/)) {
println('error---> オリジナルサイズの画像が見つかりません');
exit();
}
var title= "http://imgb1.ziyu.net/" + RegExp.$1;
var url = new URL(title);
urlinfo.url = url.url;
headers.host = url.host;
//ファイル名を抽出
if (!title.match(/([^\/]+)$/)) {
println('error---> ファイル名が見つかりません');
exit();
}
Dorothy.fileName = RegExp.$1;
}