JairoX

Results 16 comments of JairoX

I updated the stealth module ("puppeteer-extra-plugin-stealth": "^2.7.8") and am getting good response from bato.to: ``` 2021-08-23T14:35:40.902Z INFO REQ-3 Incoming request: POST /v1 2021-08-23T14:35:40.903Z INFO REQ-3 Params: {"cmd":"request.get","session":"test","url":"https://bato.to/","userAgent":"Mozilla/5.0 (Windows NT 10.0;...

@lululombard I don't think this is a bug or issue of the proxy. Most sites will need the proxy to try several times before the challenge is solved. Don't ask...

Ah I see you are using the download parameter in the GET request for downloading the file itself: `https://www.spigotmc.org/resources/essentialsx.9089/download?version=343125","method":"GET","download":true` I haven't tried that myself yet. Will have a look at...

Yes, I saw that Page.setDownloadBehavior when googling for Puppeteer file download yesterday. Good job :)

Hey again. Thanks for going through my suggestions. 1. Yes, I did it that way in my dev version: dockerfile: `ENV TMPDIR=/home/node/flaresolverr/tmp` sessions.js: `const tmpDir = process.env.TMPDIR || os.tmpdir()` This...

One more thing: I would like to add a headers parameter, so that we can pass these to https://github.com/puppeteer/puppeteer/blob/v3.3.0/docs/api.md#pagesetextrahttpheadersheaders . Some pages need correct headers to return proper responses.

Yeah I think this is great like it is now.

Hmmm, I haven't done any concrete tests, I only notice that the CF cookies stored in the session/profile folder SQLite DB are being used, because wile the first solving can...

Thanks for looking into this @dagwieers . ffmpegdirect is still evolving and maybe DRM will be added at some point but adaptive is the better option for DASH and multibitrate...

PS: just for the sake of testing if the helper in principle works with ffmpegdirect, I overrode `inputstreamhelper.config.INPUTSTREAM_PROTOCOLS` with ``` INPUTSTREAM_PROTOCOLS = { 'mpd': 'inputstream.adaptive', 'ism': 'inputstream.adaptive', 'hls': 'inputstream.adaptive', 'rtmp':...