-
Notifications
You must be signed in to change notification settings - Fork 342
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
Add "I'm feeling lucky" mode #99
base: master
Are you sure you want to change the base?
Conversation
when this option is on, whenever you open VLSub it'll first try to find a sub by hash if not found then by name then download and load it basically a one button feature
|
Right, "I'm feeling lucky mode" probably describes this better. Currently it picks the first from the list. From my experience that has not been that bad to begin with, but I see what you mean by picking the "lucky" subtitle from the available list. |
I'd suggest using a weighted sum of rating, downloads, uploader type (admin, trusted, whatever), with decreasing weights from the former to the latter. Does that make sense? |
Yeah that does make sense, however now that I've actually looked into the OpenSubtitles API it seems like the returned subtitle array is already sorted by seencount descending, so the first is already the most popular one. I'm not convinced that trying to work out a weighting system would be that much better. |
I suspected they already did some internal sorting. In that case, I agree, let's not reinvent the wheel and go with the first one. This would be a great functionality, 👍 :) |
Hi, This sounds great. How do I access this feature? I think I have VLSUB 0.9.13 Thank you. |
When this option is on, whenever you open VLSub it'll first try to find a sub by hash if not found then by name then download and load it basically a one button feature.
I think this is a pretty good feature, but the implementation could probably be a bit better. I looked into closing the GUI on a timer when the option is enabled, but that does not seem possible. Having this feature be a separate option in the view menu could also be another approach, but I'm not sure that's possible either from a single extension ( I think that is however possible for interfaces in VLC ).
Please let me know what you think!