Skip to main content
Photo of DeepakNess DeepakNess

Rumble video embed options

Unproofread notes

One way to embed Rumble videos is using the iframe embed code as you see below. This embed code can be obtained from below the video by clicking on the embed option.

<iframe class="rumble" width="640" height="360" src="https://rumble.com/embed/v70bqqu/?pub=4nvf6q" frameborder="0" allowfullscreen></iframe>

But if you want to programmatically get the video details along with the embed code, here's an API.

https://wn0.rumble.com/api/Media/oembed.json?url={videoURL}

Just replace the {videoURL} with the URL of your Rumble video and it gives you the following JSON response:

{
  "type": "video",
  "version": "1.0",
  "title": "Generating Alt Texts for 45 Images using AI in Google Sheets in Minutes",
  "author_name": "DeepakNess",
  "author_url": "https://rumble.com/c/c-7818786",
  "provider_name": "Rumble.com",
  "provider_url": "https://rumble.com/",
  "html": "\u003Ciframe src=\"https://rumble.com/embed/u4nvf6q.v70bqqu/\" width=\"3840\" height=\"2156\" frameborder=\"0\" title=\"Generating Alt Texts for 45 Images using AI in Google Sheets in Minutes\" webkitallowfullscreen mozallowfullscreen allowfullscreen\u003E\u003C/iframe\u003E",
  "width": 3840,
  "height": 2156,
  "duration": 497,
  "thumbnail_url": "https://1a-1791.com/video/fww1/31/s8/6/U/K/T/E/UKTEz.SHFsc.1.jpg",
  "thumbnail_width": 3840,
  "thumbnail_height": 2156
}

I think, this can be very helpful in creating a tool that creates optimized embed code for Rumble videos.

I am still looking into this and probably create a tool that does this.

Comment via email