使用 qBittorrent 时,种子有时会停滞。如何配置 qBittorrent 以自动强制恢复停滞的种子?我不想自己监控哪些种子停滞了。我在 Windows 10 上使用 qBittorrent。
答案1
不幸的是,到目前为止,我还没有在 qBittorrent 中找到任何可以强制恢复停滞或出错的种子的选项,如果有人知道,我也很感激。目前,我发现唯一可靠的方法是使用 AHK 脚本:
Space::
{
Loop, 100
{
Send, ^+S
Sleep, 2000
MouseMove, 187, 118
Sleep, 500
Send, {LButton}
Sleep, 60000
}
return
}
MouseMove 指令将光标置于确认对话框的位置,该指令应位于 1080p 显示器上的“是”按钮上。如果您有其他分辨率,请参阅显示当前鼠标位置的脚本:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
MouseGetPos, xpos, ypos
MsgBox, The cursor is at X%xpos% Y%ypos%.
; This example allows you to move the mouse around to see
; the title of the window currently under the cursor:
#Persistent
SetTimer, WatchCursor, 100
return
WatchCursor:
MouseGetPos, , , id, control
WinGetTitle, title, ahk_id %id%
WinGetClass, class, ahk_id %id%
ToolTip, ahk_id %id%`nahk_class %class%`n%title%`nControl: %control%
MouseGetPos, xpos, ypos
ToolTip, The cursor is at X%xpos% Y%ypos%
return
有关文档或下载请参阅官方网站:https://www.autohotkey.com/
答案2
如果我理解正确的话 - “停滞”意味着它无法连接到任何拥有您没有的文件部分的对等点或种子。
由于“停滞”的种子不活跃,如果您拥有多个种子,它将不会被算作上传和下载时隙中当前活跃的种子。
理论上 -如果如果你找到一个有你需要的东西并且有下载空间的对等点,它应该自动恢复。不幸的是,通常当我看到一个停滞的 torrent 时 - 它很可能在很长一段时间内没有任何同伴
基本上自动重启是如果其他一切都已排序,则行为正确。