vevv

Results 23 comments of vevv

I can't easily provide any example snippets, it's authenticating with a service. I can confirm that adding the quotes in Fiddler to the curl request makes it work, it's the...

```py from curl_cffi import requests session = requests.Session() resp = session.get('https://httpbin.org/cookies/set/test/"quoted"') print(f'httpbin: {resp.json()}

No clue, something like `import_timecodes` seems self explanatory to me.

Wait, YUV? I thought the entire format is just RGB images, which is why HDR subs are just darker. In any case, if you could get this implemented, it would...

Sure, I'm interested. Also, I've learned recently that SupMover may not be handling tonemap correctly, with regards to colors (only Y is handled, Cb and Cr are left as is)....

Here's a wrapper I use to add raw-like reading functionality. I only ever need content that's either decompressed or not compressed to begin with, so this works well for me....

I can confirm this causes issues on real life sites, very annoying to debug too, almost started pulling my hair out before I found this issue.

This is still an issue on 0.7.3 (particularly `+` and `=`). You should just stop modifying URLs! It's always going to lead to trouble, and having to manually test and...

Yes, it is a URL being unquoted. Here is an example URL: - Input URL: `https://example.com/path?token=example%7C2024-10-20T10%3A00%3A00Z%7ZYJkEtJQoGNQ3lyQRSnYbWLXUCUNVPQrBDW3VDEBWd1CIrShUzWBQTvzwXEtLZwy8uAxIM%2B3ke%2BQW%2F%2FkyJzGGogANuv5rw%2FXXp%2B5hZz2RW28%3D%7C8bd02e990e29ec76b54cec894e1470b4157fc1ed` - curl-cffi: `https://example.com/path?token=example%7C2024-10-20T10:00:40Z%7ZYJkEtJQoGNQ3lyQRSnYbWLXUCUNVPQrBDW3VDEBWd1CIrShUzWBQTvzwXEtLZwy8uAxIM+3ke+QW//kyJzGGogANuv5rw/XXp+5hZz2RW28=%7C8bd02e990e29ec76b54cec894e1470b4157fc1ed` - requests is same as input

Same happens with encoded commas as well, probably all encoded characters.