sphinx-contrib / video

A sphinx plugin that enables embedding of HTML5 videos

Home Page:https://sphinxcontrib-video.readthedocs.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

sphinxcontrib-video

License: MIT conventional commit Black badge prettier badge PyPI PyPI - Python Version Read the Docs Codecov GitHub Workflow Status

The video extension allows you to embed .mp4/.webm/.ogg videos as defined by the HTML5 standard. It's a wrapper around the <video> tag. using a simple directive as:

.. video:: movie.mp4

will be rendered as:

<video>
   <source src="movie.mp4" type="video/mp4">
</video>

The extension exposes pretty much all parameters from the HTML5 <video/> tag.

More information about installation and usage in our documentation quickstart.

About

A sphinx plugin that enables embedding of HTML5 videos

https://sphinxcontrib-video.readthedocs.io

License:Apache License 2.0


Languages

Language:Python 96.2%Language:HTML 3.8%