You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hello dear people,
as the name suggests, i try to run a simple script to search for a song ('like a virgin' for example) and get zero results for my search.
i have a username and password.
here's the script:
constslsk=require('slsk-client');constUSERNAME='**********';constPASSWORD='**********';slsk.connect({user: USERNAME,pass: PASSWORD},(err,client)=>{if(err){console.error("Error connecting to Soulseek:",err);return;}constsearchTerm='like a virgin';client.search({req: searchTerm,timeout: 2000},(err,res)=>{if(err){console.error(`Error searching for "${searchTerm}":`,err);return;}if(res&&res.length){client.download({file: res[0],path: `./downloads/${searchTerm}.mp3`},(err)=>{if(err){console.error(`Error downloading "${searchTerm}":`,err);}else{console.log(`Successfully downloaded "${searchTerm}"`);}});}else{console.log(`No results found for "${searchTerm}"`);}});});
i get the output no results found and then the program simply hangs until i ctrl+c
I have access to my router's settings and can configure port forwarding, but I'm not entirely sure how to set it up specifically for this module. Could you provide some guidance on:
Does the slsk-client use a specific port for incoming connections that I should forward?
If so, which port is it, and should I set it for TCP, UDP, or both?
If the port is dynamic or if there's any other configuration I should be aware of to optimize search results, could you please guide me on that as well?
Do you think the issue can arise from something else but port forwarding?
I'd really appreciate any help or insights you can provide. I'm excited about using the module but am currently stuck due to this issue.
Thank you!
The text was updated successfully, but these errors were encountered:
i managed to solve the issue by checking the UpNp igd box on.
i still struggle to download songs as it takes a really long time.
Error downloading "move your body": Error: Peer error
at Messages. (C:\Users\97254\auto_soulseek\slsk-client-master\node_modules\slsk-client\lib\peer\default-peer.js:114:21)
at Messages.emit (node:events:517:28)
at Messages.read (C:\Users\97254\auto_soulseek\slsk-client-master\node_modules\slsk-client\lib\messages.js:20:12)
at Messages._write (C:\Users\97254\auto_soulseek\slsk-client-master\node_modules\slsk-client\lib\messages.js:6:10)
at writeOrBuffer (node:internal/streams/writable:392:12)
at _write (node:internal/streams/writable:333:10)
at Writable.write (node:internal/streams/writable:337:10)
at Socket. (C:\Users\97254\auto_soulseek\slsk-client-master\node_modules\slsk-client\lib\peer\default-peer.js:24:12)
at Socket.emit (node:events:517:28)
at addChunk (node:internal/streams/readable:335:12)
hello dear people,
as the name suggests, i try to run a simple script to search for a song ('like a virgin' for example) and get zero results for my search.
i have a username and password.
here's the script:
i get the output no results found and then the program simply hangs until i ctrl+c
I have access to my router's settings and can configure port forwarding, but I'm not entirely sure how to set it up specifically for this module. Could you provide some guidance on:
Does the slsk-client use a specific port for incoming connections that I should forward?
If so, which port is it, and should I set it for TCP, UDP, or both?
If the port is dynamic or if there's any other configuration I should be aware of to optimize search results, could you please guide me on that as well?
Do you think the issue can arise from something else but port forwarding?
I'd really appreciate any help or insights you can provide. I'm excited about using the module but am currently stuck due to this issue.
Thank you!
The text was updated successfully, but these errors were encountered: