torrentCLI
1.0.0
sudo curl -s https://raw.githubusercontent.com/amogusussy/torrentCLI/main/torrentcli -o /usr/bin/torrentcli && sudo chmod +x /usr/bin/torrentcli
或者,您可以使用上述連結直接從瀏覽器下載腳本。
您可以透過輸入torrentcli search query
來運行它。例如,如果您想要 Big Buck Bunny 種子,您可以輸入torrentcli Big Buck Bunny
如果您是從瀏覽器下載的,則可以使用python3 /path/to/torrentcli search query
來執行它
如果您安裝了vlc-bittorrent
,則可以執行帶有-s
標誌的命令來串流 torrent。
這依賴於 Librex API。
您可以使用以下命令自行託管它:
git clone https://github.com/hnhx/librex/
cd librex
php -S localhost:8080
然後開啟/usr/bin/torrentcli
並將site = random.choice(sites)
替換為site = 'http://localhost:8080'
預設情況下,這將使用 xdg-open,它特定於類別 Unix 機器上的 Xorg 伺服器。您可以透過編輯subprocess.run(["xdg-open", magnet])
來變更它,將 xdg-open 替換為您使用的任何 torrent 用戶端。