-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
Filter by quality (resolution) #28
Comments
this can be achieved with regex yes but not the logic that torrentio uses. torrentio has been in development considerably longer so perhaps in a future rev |
@mikmc25 Correct me if I am wrong but would it not be trivial to filter by resolution with the API response from easynews? From inspecting a curl request to their 2.0 API, it includes resolution in the response. Unfortunately with 2.0 resolutions can't be filtered (well they can actually, but the max quality of Alternatively their 3.0 API could be used, unfortunately it returns HTML but with a blob of JSON contained. Here is an example request for their 3.0 if you want to give it a go (placeholders included as {}). This API allows filtering by resolution
Also happy to work on a pull request if you are accepting contributors. |
IMO we should stick to v2 as long as possible, as going fully V3 comes with its own set of challenges and I would rather not mix V2 with V3.
Definitely, we are short on contributors. Much appreciated. |
@sleeyax Good news, found by accident when you paginate in the web view, it makes pagination requests with Any ideas why V3 couldn't be used fully compared to V2? Feel free to try:
I'm speaking from a point of total ignorance here, just curious. If you think 2.0 should still be used, am happy to give filtering a go. |
Thing is when I tried v3 at the very beginning when they launched it the basic auth no longer worked and required cookie authentication instead 😐 Maybe (hopefully) that changed by now then. |
Doesn't need cookie auth afaik - just encode your username:password pair with base64 and put it into the request above. |
In that case go ahead :) |
Some quick notes: Torrentio regex patterns should work the same way - they just filter filename by strings according to user configured qualities. We can filter the post titles with these keywords and allow them to be configurable by the user. Will start working on a branch now. |
There should be a configurable setting to control which qualities are shown in the stream results. See torrentio for reference.
The text was updated successfully, but these errors were encountered: