「yfrog.dms」の版間の差分
提供: Yourpedia
細 (仕様変更) |
細 (Mario Yonezawa (トーク) による版 363295 を取り消し) |
||
(2人の利用者による、間の3版が非表示) | |||
10行目: | 10行目: | ||
//Dorothy2 | //Dorothy2 | ||
//caption=YFrog | //caption=YFrog | ||
− | //version=0. | + | //version=0.02 |
//hint=YFrogのサムネイルページ・Twitter・TwilogのページからURLを渡してください | //hint=YFrogのサムネイルページ・Twitter・TwilogのページからURLを渡してください | ||
//match=http://(twitter.)?yfrog.com/ | //match=http://(twitter.)?yfrog.com/ | ||
18行目: | 18行目: | ||
//end | //end | ||
//created 14,Dec.,2011 by Abcdefgh | //created 14,Dec.,2011 by Abcdefgh | ||
+ | //modified 23,Nov.,2012 by Abcdefgh | ||
//ファイル名の単純変換が不可能な為 | //ファイル名の単純変換が不可能な為 | ||
23行目: | 24行目: | ||
println('yfrog.dms start'); | println('yfrog.dms start'); | ||
// 画像紹介ページをダウンロード | // 画像紹介ページをダウンロード | ||
+ | urlinfo.url = urlinfo.url.replace(/\/yfrog\.com/,"/twitter.yfrog.com"); | ||
+ | urlinfo.url = urlinfo.url + "?sa=0"; | ||
common_load('download'); | common_load('download'); | ||
var http = download(urlinfo.url,true); | var http = download(urlinfo.url,true); | ||
31行目: | 34行目: | ||
if (!http.data.match(/Direct:[^"]+href=\"([^"]+)\"/)) { | if (!http.data.match(/Direct:[^"]+href=\"([^"]+)\"/)) { | ||
println('error---> オリジナルサイズの画像が見つかりません'); | println('error---> オリジナルサイズの画像が見つかりません'); | ||
− | exit(); | + | if (!http.data.match(/img src=\"([^"]+(jpg|png))\"/)) { |
+ | println('error---> プレビュー画像も見つかりません'); | ||
+ | exit(); | ||
+ | } | ||
} | } | ||
var title = RegExp.$1; | var title = RegExp.$1; |
2019年2月7日 (木) 23:39時点における最新版
Irvineを使ってYFrogの静止画を落とすためのスクリプト。Twitter・Twilogのページから「IrvineへすべてのURLを送る」で使う。本スクリプトは「t-co.dms」からの呼び出しにも使われる。
- ここからIrvineとDorothy2.zipをDL、インストールする
- 「(Irvineが有るフォルダ)¥Dorothy2¥program¥」に「yfrog.dms」を以下の内容で作成する
- Irvineを起動後、上記サイトに出てる設定を行う
- 「ツール」→「メインメニュー」→「動画ダウンロード2設定」で「YFrog」にチェックを入れて、「ファイル」→「保存して終了」をクリック、それ以外は同様
- 呼び出し元の「t-co.dms」も上記同様に用意しておく
- 後は、ほぼ上記サイトの説明通り
//Dorothy2 //caption=YFrog //version=0.02 //hint=YFrogのサムネイルページ・Twitter・TwilogのページからURLを渡してください //match=http://(twitter.)?yfrog.com/ //author=Abcdefgh //path=program //priority=500 //end //created 14,Dec.,2011 by Abcdefgh //modified 23,Nov.,2012 by Abcdefgh //ファイル名の単純変換が不可能な為 function(){ println('yfrog.dms start'); // 画像紹介ページをダウンロード urlinfo.url = urlinfo.url.replace(/\/yfrog\.com/,"/twitter.yfrog.com"); urlinfo.url = urlinfo.url + "?sa=0"; common_load('download'); var http = download(urlinfo.url,true); if(http.responseHeader.code != 200){ return retry('error--->' + http.responseHeader.code); } // 本画像URLを抽出 if (!http.data.match(/Direct:[^"]+href=\"([^"]+)\"/)) { println('error---> オリジナルサイズの画像が見つかりません'); if (!http.data.match(/img src=\"([^"]+(jpg|png))\"/)) { println('error---> プレビュー画像も見つかりません'); exit(); } } var title = 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; }