admin管理员组

文章数量:1131683

I am trying to allow visitors to seek specific times on the embed rumble video inside the wordpress post by clicking to timestamp links. I can do it for youtube videos using Skip to Timestamp plugin or methods like this one however, I cannot make it work for embed rumble videos.

I desperately need to make this work for a rumble video. Any help would be greatly appreciated.

Cheers.

I am trying to allow visitors to seek specific times on the embed rumble video inside the wordpress post by clicking to timestamp links. I can do it for youtube videos using Skip to Timestamp plugin or methods like this one however, I cannot make it work for embed rumble videos.

I desperately need to make this work for a rumble video. Any help would be greatly appreciated.

Cheers.

Share Improve this question asked Mar 21, 2022 at 18:06 JohnnyJohnny 1211 silver badge2 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 3

Although I appreciate user141080's attempt to give feedback on your question, he gave kind of a squirmy answer that did not address your concern.

I believe the question was how to create a timestamp link for a Rumble video. It did not ask about 3rd party software.

A hyperLink is a web browser function that takes an address as well as sometimes arguments to clarify a condition for a web server response, such as the video start time.

Best Answer: You can add: ?start=xx (or &start=xx for additional parameter) to the end of the link, where xx = the number of seconds into the video to begin.

To start video at 33:22, first convert to seconds. https://rumble.com/xxxMyVideo.html?start=2002 or https://rumble.com/xxxMyVideo.html?pub=33x55&start=2002

There may be an easier way to insert mins, but I thought it up on the fly and Rumble is using seconds for start time.

Enjoy

Setting the timestamps on a YouTube video works because YouTube allows it, this is not a functionality that Wordpress provides. For an rumble video you could use the Rumble Player API.

In the documentation there is the function "API.setCurrentTime(time)" and it should do the same as in your linked example.

本文标签: javascriptcreate timestamp links to jump to specific times on rumble videos