Skip to content
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

Is there a way to programmatically use RedVid, such that I dont need specify qualty every time its used? #3

Closed
bcornw2 opened this issue Jun 25, 2020 · 3 comments
Labels
enhancement New feature or request

Comments

@bcornw2
Copy link

bcornw2 commented Jun 25, 2020

I would like to be able to call this many times without needing to specify quality for every download. Is there functionality to call the download() method such that it is always at its highest quality?

Thanks

@elmoiv
Copy link
Owner

elmoiv commented Jun 26, 2020

Hey @bcornw2 , Thanks for your features requests. I will add them to redvid ASAP.

Patience is a virtue

@elmoiv elmoiv added the enhancement New feature or request label Jun 26, 2020
@elmoiv
Copy link
Owner

elmoiv commented Jun 30, 2020

I added a parameters for deciding whether you want it maximum or minimum quality.

...
 def __init__(self, url='', path='', max_quality=False, min_quality=False, proxies={}):
        self.proxies = proxies
        self.max, self.min = ma...
...

and

...
        # Select Quality
        if self.max:
            self.quality = VQS[0]
        elif self.min:
            self.quality = VQS[-1]
        else:
            self.quality = UserSelect(VQS)
...

Now working on the other features. When Everything is ready I will update the repo.

Stay tuned!

@elmoiv
Copy link
Owner

elmoiv commented Jul 1, 2020

Feature added.

@elmoiv elmoiv closed this as completed Jul 1, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

No branches or pull requests

2 participants