-
-
Notifications
You must be signed in to change notification settings - Fork 20
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
Thumbnails are too small on HiDPI Screens #36
Comments
It may be nice to scale the thumbnails based on how big the window is, the osc already does this somewhat. |
The way thumbfast deals with this is by multiplying the configured thumbnail dimensions by |
You might want to enable mpv_thumbnail_script/src/options.lua Line 131 in 6b42232
|
Setting it to true or yes doesn't increase the size of the thumbnails |
This might be a solution, it was for me anyway. See this issue: #69 |
Problem
When using a 4k screen the thumbnails are too small.
![disney](https://user-images.githubusercontent.com/68649699/211617406-2c639757-bd0a-49a1-8317-e5648623942a.jpg)
Solution
The simplest possible solution would be to scale up the generated thumbnails by a constant factor, defined in the config file of the script. Maybe there is another simple and more flexible solution.
Alternative Solution
Setting the
thumbnail_width
orthumbnail_height
to 600 did not result in bigger thumbnails (on a 1080p Video), but even if it did I don't really want to generate bigger thumbnails, because that could potentially take longer and fill up my/tmp
directory. I would rather have small thumbnails that get scaled up (bilinearly?) to the desired size.Thanks for maintaining the project ❤️
The text was updated successfully, but these errors were encountered: