video
Add video to your slide.
from beampy import *
# Remove quiet=True to get beampy compilation outputs
doc = document(quiet=True)
with slide('Video module'):
video('./ressources/test.webm', still_image_time=5.5)
display_matplotlib(gcs())
save('./examples_html_outputs/video.html')
HTML output
Module arguments
-
class
beampy.
video
(videofile, **kwargs)
Include a figure to the current slide. Figure formats could be (svg,
pdf, png, jpeg, matplotib figure, and bokeh figure)
Parameters: |
- content (str or matplotlib.figure or bokeh.figure) – Figure input source. To load file, content is the path to the file.
For matplotlib and bokeh, content is the python object figure of
either matplotlib or bokeh.
- ext ({'svg','jpeg','png','pdf','bokeh','matplotlib'} or None, optional) – Image format defined as string (the default value is None, which implies
that the image format is guessed from file or python object name.
- x (int or float or {'center', 'auto'} or str, optional) – Horizontal position for the figure (the default is ‘center’).
- y (int or float or {'center', 'auto'} or str, optional) – Vertical position for the figure (the default is ‘auto’, which implies
equal blank width between ‘auto’ positioned elements)
- width (int or float or None, optional) – Width of the figure (the default is None, which implies that the width
is width of the image).
|
Gallery generated by Sphinx-Gallery