如何使用 aria2c 将磁力链接转换为 .torrent 文件,同时更改 .torrent 文件名?

如何使用 aria2c 将磁力链接转换为 .torrent 文件,同时更改 .torrent 文件名?

我在用aria2c使用以下命令将磁力链接转换为 .torrent 文件:

aria2c --bt-metadata-only=true --bt-save-metadata=true <MAGNET_LINK>

但是它返回的文件名非常混乱。有什么方法可以更改 torrent 文件的输出吗?

我尝试使用--dir=./ --index-out=1=MYTORRENT.torrent,但是没有作用。

答案1

不,根据手册页。名称始终是磁力链接的 btih 字段。

--bt-save-metadata [true|false]
      Save meta data as ".torrent" file. This option has effect only when BitTorrent Magnet URI is used.  The file name is hex encoded info hash with suffix ".torrent". The directory to be saved is the same directory where download file is saved. If the same file already exists, meta data is not saved. See also --bt-metadata-only option. Default: false

答案2

aria2c --follow-torrent=false "your magnet link"

将保存磁力链接所链接的种子文件,并且不会下载种子中列出的文件。

相关内容