1. BT與磁力鏈一樣嗎如果不一樣,請問兩者有什麼區別用哪種下載方式下載文件更好
1.什麼是磁力鏈?
答:磁力鏈接,簡稱"磁力鏈",最常見的用途是基於文件內容的散列函數值來鏈接到特定文件,生成一個唯一的文件識別符用於找到文件。磁力鏈接可被運行在幾乎所有平台上的應用程序們使用以下載一個文件。因為磁力鏈接十分簡潔且為純文本格式,所以用戶可以很方便地將其復制到電子郵件或即時消息中,比如BitTorrent種子。
2.磁力鏈能夠帶來什麼好處?
答:所有的BT種子torrent文件均可以轉換為磁力鏈地址(Magnet),磁力鏈是BT下載(P2P)的最好方式,徹底解脫了BT需要種子才能下載的歷史,只需要一個簡單的鏈接地址就可以下載,實現無種子文件跨平台下載。
3.為什麼有時下載速度很慢?
答:通過磁力鏈下載最終還是使用的bt下載技術,使用P2P通訊協議。此協議的特點是下載的用戶越多,下載速度越快,隨著下載時間的增加,下載的速度也會越來越快。所以在剛開始下載的時候,速度會相對緩慢,之後會逐漸加速。
2. 如何使用python實現bt種子和磁力鏈接的相互轉換
相應的將BT種子轉換為磁力鏈代碼為:
import bencode, hashlib, base64, urllib
torrent = open('ubuntu-12.04.2-server-amd64.iso.torrent', 'rb').read()
metadata = bencode.bdecode(torrent)
hashcontents = bencode.bencode(metadata['info'])
digest = hashlib.sha1(hashcontents).digest()
b32hash = base64.b32encode(digest)
params = {'xt': 'urn:btih:%s' % b32hash,
'dn': metadata['info']['name'],
'tr': metadata['announce'],
'xl': metadata['info']['length']}
paramstr = urllib.urlencode(params)
magneturi = 'magnet:?%s' % paramstr
print magneturi
還有另外一個效率相對較高,而且更方便的方案是安裝libtorrent,在ubuntu只需要apt-get install python-libtorrent即可對應轉換磁力鏈的代碼為:
import libtorrent as bt
info = bt.torrent_info('test.torrent')
print "magnet:?xt=urn:btih:%s&dn=%s" % (info.info_hash(), info.name())
轉換磁力鏈接為bt種子文件
下面來看一個反過程,將磁力鏈轉化為種子文件。
1、需要先安裝python-libtorrent包 ,在ubuntu環境下,可以通過以下指令完成安裝:
# sudo apt-get install python-libtorrent
2、代碼如下:
#!/usr/bin/env python
import shutil
import tempfile
import os.path as pt
import sys
import libtorrent as lt
from time import sleep
def magnet2torrent(magnet, output_name=None):
if output_name and \
not pt.isdir(output_name) and \
not pt.isdir(pt.dirname(pt.abspath(output_name))):
print("Invalid output folder: " + pt.dirname(pt.abspath(output_name)))
print("")
sys.exit(0)
tempdir = tempfile.mkdtemp()
ses = lt.session()
params = {
'save_path': tempdir,
'plicate_is_error': True,
'storage_mode': lt.storage_mode_t(2),
'paused': False,
'auto_managed': True,
'plicate_is_error': True
}
handle = lt.add_magnet_uri(ses, magnet, params)
print("Downloading Metadata (this may take a while)")
while (not handle.has_metadata()):
try:
sleep(1)
except KeyboardInterrupt:
print("Aborting...")
ses.pause()
print("Cleanup dir " + tempdir)
shutil.rmtree(tempdir)
sys.exit(0)
ses.pause()
print("Done")
torinfo = handle.get_torrent_info()
torfile = lt.create_torrent(torinfo)
output = pt.abspath(torinfo.name() + ".torrent")
if output_name:
if pt.isdir(output_name):
output = pt.abspath(pt.join(
output_name, torinfo.name() + ".torrent"))
elif pt.isdir(pt.dirname(pt.abspath(output_name))):
output = pt.abspath(output_name)
print("Saving torrent file here : " + output + " ...")
torcontent = lt.bencode(torfile.generate())
f = open(output, "wb")
f.write(lt.bencode(torfile.generate()))
f.close()
print("Saved! Cleaning up dir: " + tempdir)
ses.remove_torrent(handle)
shutil.rmtree(tempdir)
return output
def showHelp():
print("")
print("USAGE: " + pt.basename(sys.argv[0]) + " MAGNET [OUTPUT]")
print(" MAGNET\t- the magnet url")
print(" OUTPUT\t- the output torrent file name")
print("")
def main():
if len(sys.argv) < 2:
showHelp()
sys.exit(0)
magnet = sys.argv[1]
output_name = None
if len(sys.argv) >= 3:
output_name = sys.argv[2]
magnet2torrent(magnet, output_name)
if __name__ == "__main__":
main()
3、用法如下
# python Magnet_To_Torrent2.py <magnet link> [torrent file]
3. 如何把bt種子轉換磁力鏈接
很簡單,先用bitcomet打開這個種子新建一個任務,然後右鍵點擊這個任務選復制Magnet
URI便把磁力連接復制到剪貼版上了
很高興回答樓主的問題
如有錯誤請見諒