How would I embed 2 videos side by side on a github readme so that in this example MixtureVariants and the Earth Heightmap node videos would be half their current width and placed next to each other.
Embed 2 Videos Side By Side on Github Readme
You cannot embed MP4 files side-by-side in Markdown. The workaround is as follows.
- Convert your MP4 files to GIF.
- Place the GIF files in Markdown as follows.
You can adjust the width of the videos if you want.A|B --|-- ![](https://example.com/a.gif)|![](https://example.com/b.gif)
A|B --|-- <img src="https://example.com/a.gif" width="600" />|<img src="https://example.com/b.gif" width="600" />
Example
A | B |
---|---|
© 2022 - 2025 — McMap. All rights reserved.