返回信息流[ 用户 yegle 在转载时选择了隐藏内部转载来源 ]
不是sourceforge上那个版本……那个版本没编译成功……
是这里找到的http://borg.uu3.net/~borg/
这是一条镜像帖。来源:北邮人论坛 / b-tbt / #22961同步于 2009/4/24
该镜像源已超过 30 天没有更新,可能在源站已被删除。
BTbt机器人发帖
mktorrent win版 (转载)
yegle
2009/4/24镜像同步8 回复
订阅后,新回复会通过你的通知中心匿名送达。
8 条回复
哪个大牛甩个vbs脚本或者bat脚本或者随便啥脚本,方便批量制作种子吧……
【 在 yegle (我是老BT) 的大作中提到: 】
: [ 用户 yegle 在转载时选择了隐藏内部转载来源 ]
: 不是sourceforge上那个版本……那个版本没编译成功……
: 是这里找到的http://borg.uu3.net/~borg/
: ...................
给我一个命令行参数吧,懒得查了
比如对目录D:\PATH做torrent的命令行是啥
有这个了写个bat不是难事
【 在 yegle (我是老BT) 的大作中提到: 】
: [ 用户 yegle 在转载时选择了隐藏内部转载来源 ]
: 不是sourceforge上那个版本……那个版本没编译成功……
: 是这里找到的http://borg.uu3.net/~borg/
: ...................
mktorrent-borg --help
Usage: mktorrent -a <url> [options] -o <torrent> <file/dir> ...
Options:
-bs <size> - piece size in KB
-a <url> - announce URL
-n <name> - dir for storing multiple files
-nd - do not include source dirs into torrent
-o <torrent> - output file (.torrent)
-pub - torrent is public (can use peer exchange)
-ig <pattern> - ignore files/dirs that match specified pattern
You can specify -ig many times.
-mt 'url1 url2 ...'
MultiTracker tier group. You can specify -mt many times
【 在 Hakkk (蓝猫淘气3k问·荷兰篇) 的大作中提到: 】
: 给我一个命令行参数吧,懒得查了
: 比如对目录D:\PATH做torrent的命令行是啥
: 有这个了写个bat不是难事
: ...................
到批量做种内容的父目录下,然后
for /d %i in (*) do mktorrent -a http://trac........ -o %i %i
差不多就是这样了
【 在 yegle (我是老BT) 的大作中提到: 】
: mktorrent-borg --help
: Usage: mktorrent -a <url> [options] -o <torrent> <file/dir> ...
: Options:
: -bs <size> - piece size in KB
: -a <url> - announce URL
: -n <name> - dir for storing multiple files
: -nd - do not include source dirs into torrent
: -o <torrent> - output file (.torrent)
: -pub - torrent is public (can use peer exchange)
: -ig <pattern> - ignore files/dirs that match specified pattern
: You can specify -ig many times.
: -mt 'url1 url2 ...'
: MultiTracker tier group. You can specify -mt many times
嗯嗯……写一个吧……然后顺便测试一下~
【 在 Hakkk (蓝猫淘气3k问·荷兰篇) 的大作中提到: 】
: 到批量做种内容的父目录下,然后
: for /d %i in (*) do mktorrent -a http://trac........ -o %i %i
: 差不多就是这样了
: ...................
cd到父目录下,然后命令行
for /d %i in (*) do mktorrent -a http://foo.bar -o %i.torrent -n %i %i
就是它了,tracker自己改
需要手工设置piece size就自己加-bs参数
如果要在bat中使用记得把%改成%%
【 在 yegle (我是老BT) 的大作中提到: 】
: 嗯嗯……写一个吧……然后顺便测试一下~
/d和in (*)和%%i是什么意思?看不懂啊~需要在哪里添加-bs?
【 在 Hakkk 的大作中提到: 】
: cd到父目录下,然后命令行
: for /d %i in (*) do mktorrent -a http://foo.bar -o %i.torrent -n %i %i
: 就是它了,tracker自己改
: ...................