Quickstart#
This section contains basic information about sphinxcontrib.video to get you started.
Installation#
Use pip to install sphinxcontrib-video in your environment:
pip install sphinxcontrib-video
Extension setup#
Enable the extension#
After installing sphinxcontrib-video, add sphinxcontrib.video to the list of extensions
in your conf.py file:
extensions = [
#[...]
"sphinxcontrib.video",
]
video directive#
You can now add video directly in your documentation:
.. video:: _static/video.mp4
Options#
the video directive supports all the optional attributes from the html tag as summurazied in the following table:
Attribute |
value |
Description |
|---|---|---|
|
|
Specify the text to write when the video cannot be displayed |
|
Specifies that the video will start playing as soon as it is ready |
|
|
Specifies that video controls should not be displayed (such as a play/pause button etc). |
|
|
|
Specifies the controls to show on the media element. Can only be one or more of comma separated values from |
|
|
Sets the height of the video player in pixels (ignored if relative width is used) |
|
Specifies that the video will start over again, every time it is finished |
|
|
Specifies that the audio output of the video should be muted |
|
|
|
Specifies an image url to be shown while the video is downloading, or until the user hits the play button |
|
|
Specifies if and how the author thinks the video should be loaded when the page loads. Can only be values from |
|
|
Sets the width of the video player in pixels or relative to the page’s width if a percentage |
|
Specifies that the video will play in-line (instead of full-screen) on small devices. |
|
|
|
Set extra class to the video html tag |
|
|
Sets the horizontal alignment. Can only be values from |
|
|
Set the caption text under video |
|
|
Set the maximum width of caption text. It is defined as the same of ‘figwidth’ in figure. It will be disabled when ‘caption’ is not set. |
They can be used as any directive option:
.. video:: _static/video.mp4
:nocontrols:
:autoplay:
:playsinline:
:muted:
:loop:
:poster: _static/image.png
:width: 100%
And using the :class: parameter in combination with custom css, you can change the display of the html <video> tag:
.. video:: _static/video.mp4
:class: video-bordered
Alignment:
.. video:: _static/video.mp4
:align: left
.. video:: _static/video.mp4
:align: center
.. video:: _static/video.mp4
:align: right
For consistency with previous versions, which not support align, the default value of align is set to left when nothing is set. If you want to use the alignment defined by your theme, you need to, manually, set it to default:
.. video:: _static/video.mp4
:align: default
Caption:
.. video:: _static/video.mp4
:align: center
:caption: The caption text
The caption text
Use figwidth to set the maximum width of the caption text if the video is narrow:
.. video:: _static/video.mp4
:width: 300
:figwidth: 60%
:align: center
:caption: The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
The width of video is not controlled by ‘figwidth’, you need to use ‘width’ to control it. For example, if you don’t set the ‘width’, the following problems may occur: The video with is greater than ‘figwith’, resulting in results that are not aligned as expected.
.. video:: _static/video.mp4
:figwidth: 60%
:align: center
:caption: The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
When the ‘width’ is set to a percentage, the percent number indicates the relative to ‘figwidth’:
.. video:: _static/video.mp4
:width: 100%
:figwidth: 60%
:align: center
:caption: The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
When ‘caption’ is set, and ‘align’ is ‘left’ or ‘right’, the video will be float to text in some themes.
.. video:: _static/video.mp4
:width: 95%
:figwidth: 65%
:align: left
:caption: The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
long long text...
The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text
.. video:: _static/video.mp4
:width: 95%
:figwidth: 65%
:align: right
:caption: The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
long long text...
The caption text text xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx xxx
long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text long long text
Advanced Usage#
The browser used by the user may not support the codec of the primary source set in the directive. The <video> tag offers the possibility to add multiple sources, the first one compatible being the one displayed on screen. To use this options simply add the alternative source as a second argument to your video:
.. video:: _static/video.webm _static/video.mp4
Note
to enforce this behavior set the sphinx parameter video_enforce_extra_source to True in your conf.py, it will then raise a warning when a secondary source is missing.
# conf.py
video_enforce_extra_source = True