回答:
btshowmetainfo
、以前はBitTorrentディストリビューションに含まれていましたが、現在は主にBitTornado(BitTorrent 3.xコードベースのフォーク)と共にインストールされ、まさにそれを行います。
$ btshowmetainfo amd64cd-5.1.2.iso.torrent
btshowmetainfo 20030621 - decode BitTorrent metainfo files
metainfo file.: amd64cd-5.1.2.iso.torrent
info hash.....: e30c05f2330ba4869eefb90bf5978a505303b235
file name.....: amd64cd-5.1.2.iso
file size.....: 253325312 (966 * 262144 + 94208)
announce url..: http://tracker.netbsd.org:6969/announce
Gnome Transmission BitTorrentクライアントtransmission-show
に含まれているを使用できます。
$ transmission-show amd64cd-5.1.2.iso.torrent
Name: amd64cd-5.1.2.iso
File: amd64cd-5.1.2.iso.torrent
GENERAL
Name: amd64cd-5.1.2.iso
Hash: e30c05f2330ba4869eefb90bf5978a505303b235
Created by:
Created on: Sun Feb 5 01:31:29 2012
Piece Count: 967
Piece Size: 256.0 KiB
Total Size: 253.3 MB
Privacy: Public torrent
TRACKERS
Tier #1
http://tracker.netbsd.org:6969/announce
FILES
amd64cd-5.1.2.iso (253.3 MB)
Transmissionの古いバージョンを使用している場合、古いtransmissioncli --info
コマンドを使用できます。
$ transmissioncli --info amd64cd-5.1.2.iso.torrent
Transmission 2.03 (11030) - http://www.transmissionbt.com/
hash: e30c05f2330ba4869eefb90bf5978a505303b235
name: amd64cd-5.1.2.iso
tracker tier #1:
announce: http://tracker.netbsd.org:6969/announce
size: 253325312 (966 * 262144 + 94208)
file(s):
amd64cd-5.1.2.iso (253325312)
transmission-show
正確なファイルサイズを含む出力を取得する方法はありますか?結局のところ、同じものの2つのトレントがまったく同じファイルではないかどうかを確認するのに役立ちます。
aria2を使用できます。aria2c(1)のmanページ:
-S, --show-files[=true|false]
「.torrent」、「。meta4」、「。metalink」ファイルのファイルリストを出力して終了します。「.torrent」ファイルの場合、追加情報(infohash、piece lengthなど)も印刷されます。
$ aria2c -S ubuntu-14.04.2-desktop-i386.iso.torrent >>>ファイル「ubuntu-14.04.2-desktop-i386.iso.torrent」の内容を印刷しています... *** BitTorrentファイル情報*** コメント:Ubuntu CDリリース.ubuntu.com 作成日:木、2015年2月19日22:17:32 GMT モード:シングル 発表: http://torrent.ubuntu.com:6969/announce http://ipv6.torrent.ubuntu.com:6969/announce 情報ハッシュ:33678ec8b0dfb8a9061348c8af7194268c0b8310 ピースの長さ:512KiB ピースの数:2006 全長:0.9GiB(1,051,721,728) 名前:ubuntu-14.04.2-desktop-i386.iso マグネットURI:magnet:?xt = urn:btih:33678EC8B0DFB8A9061348C8AF7194268C0B8310&dn = ubuntu-14.04.2-desktop-i386.iso&tr = http%3A%2F%2Ftorrent.ubuntu.com%3A6969%2Fannounce&tr = http%3A%2F6F2F6F2 torrent.ubuntu.com%3A6969%2Fannounce ファイル: idx | path / length === + ============================================= ============================= 1 | ./ubuntu-14.04.2-desktop-i386.iso | 0.9GiB(1,051,721,728) --- + ---------------------------------------------- -----------------------------
aria2c -S *.torrent
ます。
ハッシュを計算する機能を含むlstorは、シェルスクリプトで非常に便利です。
$ lstor Chakra\ 2012.02\ Archimedes\ x86.torrent -qo __hash__
B3472076574BC666396766AB3B28C0054D740B46
$ lstor Chakra\ 2012.02\ Archimedes\ x86.torrent -q
NAME Chakra 2012.02 Archimedes x86.torrent
SIZE 1.4 GiB (1461 * 1.0 MiB + 0 bytes)
HASH B3472076574BC666396766AB3B28C0054D740B46
URL http://linuxtracker.org:2710/********************************/announce
PRV YES (DHT/PEX disabled)
TIME 2012-02-13 17:10:28
BY qBittorrent v2.9.3
FILE LISTING
chakra-2012.02-Archimedes-i686.iso 1.4 GiB
$ lstor Chakra\ 2012.02\ Archimedes\ x86.torrent -q --raw
{'announce': 'http://linuxtracker.org:2710/********************************/announce',
'created by': 'qBittorrent v2.9.3',
'creation date': 1329149428,
'info': {'length': 1531969536,
'name': 'chakra-2012.02-Archimedes-i686.iso',
'piece length': 1048576,
'pieces': '<1461 piece hashes>',
'private': 1},
'url-list': ''}
Torrent File Editor
を使用できます(ソース:fsdn.com)
また、.torrentファイルは、コマンドラインで.json形式に変換できます--to-json
。
https://github.com/effigies/BitTornado
するpython3 btshowmetainfo.py
ためにクローンを作成して実行できます。