It looks like webm
encoded video files are not rendered correctly when used within md
files like follows:
![](my-video.webm)
After some investigation, I’ve found out that there seems to be a typo in the default configuration of media types which ships with GRAV.
webm:
type: file
thumb: media/thumb-webm.png
mime: video/webm
Should rather be:
webm:
type: video
thumb: media/thumb-webm.png
mime: video/webm
At least - if I change the type
from text
to video
, everything seems to work properly.