Embed 2 Videos Side By Side on Github Readme
Asked Answered
P

1

7

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.

Videos

Polychromatic answered 25/8, 2021 at 4:6 Comment(0)
S
1

You cannot embed MP4 files side-by-side in Markdown. The workaround is as follows.

  1. Convert your MP4 files to GIF.
  2. Place the GIF files in Markdown as follows.
    A|B
    --|--
    ![](https://example.com/a.gif)|![](https://example.com/b.gif)
    
    You can adjust the width of the videos if you want.
    A|B
    --|--
    <img src="https://example.com/a.gif" width="600" />|<img src="https://example.com/b.gif" width="600" />
    

Example

A B
Starry answered 19/10, 2023 at 6:12 Comment(0)

© 2022 - 2025 — McMap. All rights reserved.