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

Add support for video visibilty #15

Open
offish opened this issue Mar 20, 2021 · 1 comment
Open

Add support for video visibilty #15

offish opened this issue Mar 20, 2021 · 1 comment
Labels
enhancement New feature or request

Comments

@offish
Copy link
Owner

offish commented Mar 20, 2021

Currently, every video uploaded is set to public.

@offish offish added the enhancement New feature or request label Mar 20, 2021
@yashmangal1203
Copy link

I had this problem, but was quite easy to fix.
All you had to do is create a new Constant same as in the constants.py :
"PUBLIC_BUTTON" = "PUBLIC"
"PRIVATE_BUTTON" = "PRIVATE"

Then change the upload.py as following:
in the 166th line it reads public_main_button = modal.find_element_by_name(PUBLIC_BUTTTON)
Change it to public_main_button = modal.find_element_by_name(PRIVATE_BUTTON)

This will default it to Private.

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