Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Animation conversion to HTML5 video#4785
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Changes fromall commits
8cdc00a
8cc21db
6c0b72f
1c99a9e
83f4a45
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -499,6 +499,9 @@ def validate_hinting(s): | ||
validate_axis_locator = ValidateInStrings('major', ['minor', 'both', 'major']) | ||
validate_movie_html_fmt = ValidateInStrings('animation.html', | ||
['html5', 'none']) | ||
def validate_bbox(s): | ||
if isinstance(s, six.string_types): | ||
s = s.lower() | ||
@@ -944,6 +947,7 @@ def __call__(self, s): | ||
'examples.directory': ['', six.text_type], | ||
# Animation settings | ||
'animation.html': ['none', validate_movie_html_fmt], | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I guess this needs to be added to the rc template too. At least for now? A comment with an explanation about that this controls therepr_html would also be good I think | ||
'animation.writer': ['ffmpeg', validate_movie_writer], | ||
'animation.codec': ['mpeg4', six.text_type], | ||
'animation.bitrate': [-1, validate_int], | ||