Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to set start and end time parameters using Vimeo player?

Tags:

vimeo-player

For Youtube player I can set start and end time parameters which will crop video in this range. How can I do the same thing using Vimeo player?

like image 631
redexp Avatar asked Oct 16 '13 15:10

redexp


People also ask

How do you start a Vimeo video at a certain time?

To share a video link that will begin playback at a specific point, add #t= to the end of the URL followed by the timecode of where you'd like playback to begin.

How do I customize my Vimeo player?

At the bottom of the player, click inside the blue box that appears around the play bar. In the menu that pops up, you can toggle the controls and other elements you want to appear here: the play bar, volume control, fullscreen button, the Vimeo logo, or a custom logo.

How do I auto start a video on Vimeo?

If you'd like your embedded video to autoplay or loop, go to the video's page on vimeo.com and click the "Share" button in the upper right corner of the video player. In the window that opens, click the "Show options" link, and check the corresponding boxes next to "Loop this video," "Autoplay this video," or both.

How do I stop videos from appearing at the end of Vimeo?

All the options listed above can be found by navigating to your video's Settings > Interaction tools > After video. Open the End screen drop-down menu to choose your end screen.


1 Answers

  • Vimeo JavaScript API: seekTo(seconds:Number):void and pause():void after some progress.

  • Vimeo ActionScript API: seek(seconds:Number):void and pause():void after some progress.

  • Also basic link parameter from this Help Center article: vimeo.com/148198462#t=1m5s Stopping the video at the particular time in this case isn't implemented yet.

like image 117
Kamiccolo Avatar answered Oct 04 '22 14:10

Kamiccolo