-
Notifications
You must be signed in to change notification settings - Fork 171
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
Feature suggestion: Video options #261
Comments
@ford--prefect which options did you have in mind exactly? it may be useful to show a sample configuration file that would do what you need, for example. please expand what your use-case is. |
The HTML5 video tag has several options controlling e.g. loading, showing controls, repeat mode, and autoplaying of the movie. EDIT: Markdown ate my style, corrected. ===== Example 1 ====
produces html5 output like:
===== Example 2 ====
produces html5 output like:
|
On 2017-10-25 17:13:25, ford--prefect wrote:
The HTML5 video tag has several options controlling e.g. loading, showing controls, repeat mode, and autoplaying of the movie.
I guess the question is whether that is an exhaustive list or not.
If it's exhaustive, then it would make sense to have one setting in the
config file for every HTML5 setting. But otherwise, it may be better to
have this free-form.
A.
--
Some believe it is only great power that can hold evil in check, but
that is not what I have found. It is the small everyday deeds of
ordinary folk that keep the darkness at bay. Small acts of kindness and
love. - J.R.R. Tolkien
|
According to the specification the full list is:
not all of which are applicable here (e.g. width, height, src, crossorigin arent settings one sets for all videos at once). This is unlikely to change anytime soon, so adding these config variables makes sense in my view. |
I think I prefer the second option, to avoid the proliferation of settings, but no strong feelings (either one would be fine is someone wants to work on it 😉 ) |
I can look into this, but I have not much clue of your code at all. Do you have any contributor documentation with some hints how the subsystem interplay and maybe a tip where to start? |
No real contributor documentation, sorry! But adding a new setting is easy (you can have a look at #270 or other PRs), and the |
Hi,
I'd like to suggest to add options for video playback, so the software becomes more configurable.
This could either be done by en/dis-abling several options (autoplay, preload, loop etc) or just passing an options string right into the html5 video tag.
Thank you for considering.
The text was updated successfully, but these errors were encountered: