找回密码
 立即注册
搜索
查看: 3698|回复: 26

同人志下载求指导

[复制链接]
发表于 2009-2-23 00:55 | 显示全部楼层 |阅读模式
http://g.e-hentai.org/
在上面这个网下载同人,右键太麻烦,印象中似乎有这个的批量下载工具和教程,求大能指导
回复

使用道具 举报

     
发表于 2009-2-23 01:23 | 显示全部楼层
從來都是右鍵在這一張一張收圖的路過,同求批量下載法
回复

使用道具 举报

发表于 2009-2-23 01:41 | 显示全部楼层
选Doggie Bag Archiver不就可以打包下载了么
回复

使用道具 举报

发表于 2009-2-23 01:52 | 显示全部楼层
需要GP和信用值的...虽然我有帐号.....但那GP还是0啊.....那不就是还要一张张的下
回复

使用道具 举报

发表于 2009-2-23 01:53 | 显示全部楼层
不管直接开网页还是用工具都会遇到某个图片打死打不开,是否是图本身挂了?
回复

使用道具 举报

发表于 2009-2-23 02:01 | 显示全部楼层

回复 5楼的 ravage 的帖子

以上情况请用代理打开那个挂了的图片就好了....
当然有些图片是怎么代理都打不开的,请过两天再DOWN....
至于为啥会这样...我不知道....
回复

使用道具 举报

     
发表于 2009-2-23 02:06 | 显示全部楼层
名>驴>搜>下>完>撸
回复

使用道具 举报

     
发表于 2009-2-23 02:09 | 显示全部楼层
这种乱序地址的在线漫画,用软件批量下载还真不行
回复

使用道具 举报

     
发表于 2009-2-23 02:13 | 显示全部楼层
原帖由 永远的绫波 于 2009-2-23 02:06 发表
名>驴>搜>下>完>撸


撸是什么?
回复

使用道具 举报

发表于 2009-2-23 02:18 | 显示全部楼层

回复 9楼的 牛人图腾 的帖子

我......我竟然看明了......
另外讲到明也没意思了.
回复

使用道具 举报

发表于 2009-2-23 04:38 | 显示全部楼层

回复 9楼的 牛人图腾 的帖子

这算装cj的么
回复

使用道具 举报

发表于 2009-2-23 04:56 | 显示全部楼层
傳點東西就有GP了...想不勞而食還是一張一張右鍵吧.
回复

使用道具 举报

头像被屏蔽
发表于 2009-2-23 05:06 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

     
发表于 2009-2-23 05:22 | 显示全部楼层
撸  lū
  1.<方>捋(luō):挽着裤脚,~起袖子;把树枝上的叶子~下来。
  2.撤销(职务),把他~了。
  3.训斥;斥责:挨了~一顿。


以上摘自百度百科
回复

使用道具 举报

发表于 2009-2-23 06:00 | 显示全部楼层
请使用firefox
并使用插件 http://userscripts.org/scripts/show/37453
可批量生成下载地址

经验证,可下。
回复

使用道具 举报

发表于 2009-2-23 07:18 | 显示全部楼层
我是小白...請教一下LS的使用方法...

用FF點擊那個安裝鍵

就會出來下面東西的頁面.....這東西真的是插件嗎?...

// ==UserScript==
// @name           g.e-hentai.org downloader
// @namespace      http://g.e-hentai.org
// @include        http://g.e-hentai.org/*
// ==/UserScript==

function parse_html(html)
{
    var m;
    var out = {};
    var re_next = /<a +href=\"([^\"]*)\"[^>]*>[ \\t]*<img[^>]+alt=\"Next\"/;
    m = re_next.exec(html);
    if (m)
    {
        out.next_url = m[1];
    }
    var re_img = /<img +id=\"mainimg\"[^>]+src=\"([^\"]+)\"/
    m = re_img.exec(html);
    if (m)
    {
        out.img_url = m[1];
    }
    var re_page = /Page ([0-9]+)\\/([0-9]+)/
    m = re_page.exec(html);
    if (m)
    {
        out.current = parseInt(m[1]);
        out.total = parseInt(m[2]);
    }
    return out;
}

function build_ui()
{
    var main = document.getElementById(\'mainimg\').parentNode;
    var main2 = document.createElement(\'div\');
    main2.innerHTML=\'<div id=\"__status__\"></div><div id=\"__output__\"></div>\';
    main.parentNode.replaceChild(main2,main);
}
function append_output(html)
{
    document.getElementById(\'__output__\').innerHTML += html;
}
function set_status(html)
{
    document.getElementById(\'__status__\').innerHTML = html;
}
function do_current()
{
    var current_out = unsafeWindow.__currentout__;
    if (\'img_url\' in current_out)
    {
        append_output(\'<a href=\"\'+current_out.img_url+\'\">\'+current_out.current+\'</a>  \');
    }
    //ajax next
    do_next();
   
}
function do_next()
{
    var current_out = unsafeWindow.__currentout__;
    if (current_out.current < current_out.total &&
        \'next_url\' in current_out)
    {
        var url = current_out.next_url;
        set_status(\'current:\'+current_out.current+\'/\'+current_out.total+\'<br/>fetch:\'+url);
        function onload(resp)
        {
            if (resp.status!=200){do_error(\'download error:\'+resp.statusText);return;}
            var out = parse_html(resp.responseText);
            //todo::handle parse error
            var items = [];
            for (x in out){items.push(x);}
            if (items.length<4)
            {
                //GM_log(\'error url:\'+resp.finalUrl);
                //GM_log(\'error html:\'+resp.responseText);
                do_error(\'Parse error:\'+resp.responseText);
                return;
            }
            unsafeWindow.__currentout__ = out;
            do_current();
        }
        GM_xmlhttpRequest({
            method:\'GET\',
            url:url,
            headers:{
                \'User-Agent\':\'Mozilla/5.0 (Windows; U; Windows NT 5.1; zh-CN; rv:1.9.0.4) Gecko/2008102920 Firefox/3.0.4\',
                \'Referer\':document.location.href,
                \'Cookie\':document.cookie
            },
            onload:onload,
            onerror:do_error
        });
    }
}
function do_error(reason)
{
    GM_log(\'do_error=\'+reason);
    var html = \'<button id=\"__continue__\">continue</button><br/>\';
    var txt = document.createTextNode(reason);
    var div = document.createElement(\'div\');
    div.appendChild(txt);
    set_status(html+div.innerHTML);
    document.getElementById(\'__continue__\').addEventListener(\'click\',function(e){
        set_status(\'\');
        do_next();
    },false)
}
function btn_download_click(e)
{
    document.getElementById(\'__btn_download__\').disabled = true;
    unsafeWindow.__currentout__ = parse_html(document.documentElement.innerHTML);
    build_ui();
    do_current();
   
}
var tmp = document.getElementById(\'imgtext_1\');
if (tmp)
{
    var div = document.createElement(\'div\');
    div.innerHTML = \'<button id=\"__btn_download__\">download</button>\';
    tmp.parentNode.insertBefore(div,tmp);
    var btn = document.getElementById(\'__btn_download__\');
    btn.addEventListener(\'click\',btn_download_click,false);
}
回复

使用道具 举报

发表于 2009-2-23 07:26 | 显示全部楼层
哦..原來是要先下載GM
回复

使用道具 举报

     
发表于 2009-2-23 07:35 | 显示全部楼层
greasemonkey的脚本
回复

使用道具 举报

     
发表于 2009-2-23 08:27 | 显示全部楼层
你们这群拿了金饭碗要饭的人
hein大的OX163放着不用
回复

使用道具 举报

 楼主| 发表于 2009-2-23 10:20 | 显示全部楼层
编辑掉

[ 本帖最后由 gineclar 于 2009-2-23 10:22 编辑 ]
回复

使用道具 举报

发表于 2009-2-23 10:21 | 显示全部楼层
置顶
回复

使用道具 举报

 楼主| 发表于 2009-2-23 13:19 | 显示全部楼层
实践表明,还是右键最有效率
回复

使用道具 举报

     
发表于 2009-2-23 13:58 | 显示全部楼层
用OX163结果因为开页面过快被BAN IP了
回复

使用道具 举报

发表于 2009-2-23 14:00 | 显示全部楼层
有在线漫画网批量下载工具……我用的就不放出来了,因为只支持些国内比较火的网站
有更专业的,GOOGLE一下就有了
回复

使用道具 举报

头像被屏蔽
发表于 2009-2-23 14:13 | 显示全部楼层
提示: 作者被禁止或删除 内容自动屏蔽
回复

使用道具 举报

发表于 2009-2-23 15:31 | 显示全部楼层
连那些本身分辨率小的图也都缩了么?
回复

使用道具 举报

     
发表于 2009-2-23 18:04 | 显示全部楼层
右键另存为怎么是BMP格式?原图是JPG啊
一本本子都要100M+
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

Archiver|手机版|小黑屋|上海互联网违法和不良信息举报中心|网上有害信息举报专区|962110 反电信诈骗|举报电话 021-62035905|Stage1st ( 沪ICP备13020230号-1|沪公网安备 31010702007642号 )

GMT+8, 2025-8-28 15:36 , Processed in 0.181774 second(s), 8 queries , Gzip On, Redis On.

Powered by Discuz! X3.5

© 2001-2025 Discuz! Team.

快速回复 返回顶部 返回列表