Libtorrent torrent->磁铁

Posted

技术标签:

【中文标题】Libtorrent torrent->磁铁【英文标题】:Libtorrent torrent->magnet 【发布时间】:2017-05-23 11:52:23 【问题描述】:

我正在尝试使用 libtorrent 将一些种子文件转换为磁铁。

我读过你可以在 python 中使用

 info = libtorrent.torrent_info(sys.argv[1])
 print "magnet:?xt=urn:btih:%s&dn=%s" % (info.info_hash(), info.name())

我在 C++ 上尝试过以下方法

 torrent_info ti(current_file.c_str(), ec);
 printf("magnet:?xt=urn:btih:%s&dn=%s\n", ti.info_hash().to_string().c_str(), ti.name().c_str());

但结果不是正确的字符串(是二进制),不能使用结果。

有人知道如何将种子的哈希值转换为我可以打印的东西吗?

非常感谢。

【问题讨论】:

【参考方案1】:

您可以使用在"libtorrent/magnet_uri.hpp" 中声明的make_magnet_uri

这是一个将 torrent 文件转换为磁铁 uri 的示例代码:

error_code ec;
torrent_info ti("filename", ec);
std::string magnet_uri = make_magnet_uri(ti);

【讨论】:

以上是关于Libtorrent torrent->磁铁的主要内容,如果未能解决你的问题,请参考以下文章

我无法通过 libtorrent-python 接收磁链接元数据,而无需指定跟踪器的 udp 协议

使用 python-libtorrent 从 torrent 文件中获取 torrent 下载目录

我无法从公共跟踪器 libtorrent 下载 torrent

如何使用 python-libtorrent 获取 torrent 的对等列表?

您如何获得 libtorrent 中 torrent 的总大小?

使用 libtorrent 对 torrent 下载序列进行优先级排序