Closed IcyMint closed 4 years ago
Hey @IcyMint ,
From what you said, I understood the following:
Is that all you want, or I missed a thing?
The second feature would be optimal but if it proves to be too involved the first one would be great. Either one would go a long way to solving the problem.
Ok. I will start working on your request ASAP. Stay tuned :)
Hey @IcyMint , sorry for adding this feature too late.
redvid
now can match the given maximum size to highest possible quality.
To do this:
pip install redvid==1.1.0
from redvid import Downloader
reddit = Downloader() reddit.url = 'https://www.reddit.com/r/Unexpected/comments/9n8mmz/_/'
reddit.max_s = 3 * (1 << 20)
reddit.auto_max = True
reddit.download()
If this solves your problem, kindly close this issue :)
Just tried it out and it works exactly as expected. Thanks a ton! 🥇
I'm in a situation where I would like to select the highest quality while being under the defined size limit. I can set quality to be highest or lowest but I can't find a way to retrieve the list of qualities from UserSelect or select a custom quality. TL;DR: I was wondering if there was a way to select the highest quality under a given size limit, or at least be able to select a quality without needing user intervention.