We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
magnet:?xt=urn:btih:f72f831066469eafe21fccbd8c3e7d3f5288775d&dn=%e5%bd%a2%e7%8a%b6&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.altrosky.nl%3a6969%2fannounce
这个问题啥原因,业内其他工具没用过不知道会不会由相同得问题,有没有解决办法 代码如下 resolveRes, err := Downloader.Resolve(&base.Request{ URL: "magnet:?xt=urn:btih:f72f831066469eafe21fccbd8c3e7d3f5288775d&dn=%e5%bd%a2%e7%8a%b6&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.altrosky.nl%3a6969%2fannounce", }) if err != nil { fmt.Println("resolver err") panic(err) }
这个问题有解决方案么 代码如下 taskId, err := Downloader.Create(resolveRes.ID, &base.Options{ Path: "./download/gopeed/file2", SelectFiles: []int{1}, Extra: http.OptsExtra{ Connections: 8, }, }) if err != nil { panic(err) } fmt.Println("taskId: ", taskId)
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
okk
No branches or pull requests
magnet:?xt=urn:btih:f72f831066469eafe21fccbd8c3e7d3f5288775d&dn=%e5%bd%a2%e7%8a%b6&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.altrosky.nl%3a6969%2fannounce
不清楚为什么这么慢,这个解析方法还没有到下载,我的预期应该也是 1s,2s 可以返回,但是现在和预期差距较大
这个问题啥原因,业内其他工具没用过不知道会不会由相同得问题,有没有解决办法
代码如下
resolveRes, err := Downloader.Resolve(&base.Request{
URL: "magnet:?xt=urn:btih:f72f831066469eafe21fccbd8c3e7d3f5288775d&dn=%e5%bd%a2%e7%8a%b6&tr=udp%3a%2f%2fopentracker.i2p.rocks%3a6969%2fannounce&tr=udp%3a%2f%2ftracker.altrosky.nl%3a6969%2fannounce",
})
if err != nil {
fmt.Println("resolver err")
panic(err)
}
我指定 SelecyFiles = 1,只下载 txt 说明文件,但是现状是,数秒后说明文件和电影都被下载到了本地,但是电影文件是损坏的无法看,我的预期是他就不应该被下出来
这个问题有解决方案么
代码如下
taskId, err := Downloader.Create(resolveRes.ID, &base.Options{
Path: "./download/gopeed/file2",
SelectFiles: []int{1},
Extra: http.OptsExtra{
Connections: 8,
},
})
if err != nil {
panic(err)
}
fmt.Println("taskId: ", taskId)
The text was updated successfully, but these errors were encountered: