Questions tagged [froogaloop]

Froogaloop is a small JavaScript utility framework for controlling and interacting with an embedded Vimeo Player iframe. The Froogaloop library is no longer supported by Vimeo. Its replacement is the Vimeo Player.js library.

Introduction

The Froogaloop library has been deprecated. An archive of its original source is available on GitHub.

Developers who wish to control and interact with the embedded Vimeo Player iframe must use Player.js.

Tag Monitoring

The tag is not monitored by Vimeo Staff.

Vimeo Staff monitors the , , and tags. Staff members do their best to reply on StackOverflow in a timely manner. However, for urgent and time-sensitive requests, contact Vimeo direct for the quickest response.

News and Updates

Help, Feedback, and Non-Developer Inquiries

Additional Resources

References

92 questions
1
vote
1 answer

Stop bxslider when the video is playing

this is our desired sequence The slider starts automatically when the video slide comes.the user clicks play and view the video when the video is playing the slider should stop when the user pauses the video ,the slider should start We are using…
yasarui
  • 6,209
  • 8
  • 41
  • 75
1
vote
1 answer

Hide pause/play button on vimeo iframe on hover

I am using a Vimeo iframe on a website. I hide all the controls with the Vimeo Froogaloop API. But I can't hide the pause and play button that appear on hover. Somebody please help me. $(document).ready(function(){ …
yasarui
  • 6,209
  • 8
  • 41
  • 75
1
vote
1 answer

Froogaloop 'finish' event is also firing a 'pause' event

In my page initialization script, I have the following code: var iframe = document.getElementById('video'); var player = Froogaloop(iframe); player.addEvent('ready', function() { player.addEvent('play', function() { …
pgblu
  • 662
  • 1
  • 7
  • 29
1
vote
1 answer

Froogaloop get reference of event function

I am using the example presented in https://developer.vimeo.com/player/js-api: Javascript + HTML: script.js: $(function() { var iframe = $('#player1')[0]; var player = $f(iframe); var status = $('.status'); // When the player…
Tal
  • 91
  • 1
  • 5
1
vote
0 answers

How do I reference this embedded iframe from javascript

I am using squarespace (in retrospect a poor idea because of the difficulty of customizing with code), and I need to be able to identify the vimeo iframe within this div so I can use it in some javascript calls. However, the javascript does not…
1
vote
1 answer

Stop playing embedded video on specific resolutions

I'm working on a website that contains two the same vimeo video's. One is for the larger screen resolutions for the < 1000px resolutions I want the video in another place. So I placed two of them in there, and with some CSS I controlled which of…
Trekdrop
  • 475
  • 7
  • 27
1
vote
0 answers

Trying to add with stop all playing videos functionality on modal window close with Vimeo API

I'm using the following Modal window script: https://github.com/drublic/css-modal I've found the code that triggers on the closing of the current modal window. I've added in some code from Vimeo's developers page slightly modified: //…
Dave Rottino
  • 1,037
  • 3
  • 22
  • 49
1
vote
1 answer

Vimeo Froogaloop Events not firing

I'm having problems firing and listening to events with the froogaloop api. My code is : $f('player').addEvent('ready', video.load); $f('player').addEvent('play', video.show); $f('player').addEvent('finish', video.unload); And my function: load:…
loupyestu
  • 11
  • 4
1
vote
1 answer

Return duration from a function

One of the functions for the vimeo API (with froogaloop) is getDuration(). I am trying to make a function that will return the duration, but somehow I am getting Object as result. The Vimeo API documentation doesn't specify how are you supposed to…
scroll_lock
  • 143
  • 2
  • 11
1
vote
1 answer

Interact with Vimeo player on vimeo.com using Javascript

I have successfully used the Froogaloop library to monitor embedded Vimeo video players on various sites (for a feature of my Chrome extension). I'd like to do the same thing on vimeo.com itself, but the video players on vimeo.com pages are not…
joelpt
  • 4,675
  • 2
  • 29
  • 28
1
vote
1 answer

Multiple play buttons and vimeo with Froogaloop & jQuery

I have multiple play buttons on a page that launches a twitter bootstrap modal that contains a vimeo video. Unfortunately I'm not able to get a play button to play a particular video. It plays them all. Is there a way to tie each play button to a…
Philip Meissner
  • 163
  • 1
  • 1
  • 10
1
vote
1 answer

Froogaloop Failed to load resource

I am using the current versions of Jquery and Froogaloop. The issue is not detrimental, the videos still play, but whenever you try to scrub the video (in Firefox), the video goes away and I get an oh so helpful error on the vimeo video saying…
Branden S. Smith
  • 1,161
  • 7
  • 13
1
vote
1 answer

Vimeo froogaloop api not working when another iframe on page

very strange. the events don't fire when there is another simple iframe. I removed the iframe - and it worked. the html with the extra iframe:
Moshe Shaham
  • 15,448
  • 22
  • 74
  • 114
0
votes
0 answers

Video Follow on Mouse Move in React

I have this javascript function that autoplays a Vimeo video and attaches to the cursor when hovering over an element. I'm trying to figure out how to do this in React but I'm not having any luck. Originally, I was using Froogaloop and Vimeo player…
Tam
  • 49
  • 5
0
votes
2 answers

How can I disable Javascript error messages within browser consoles?

I am using the old Froogaloop2 Vimeo library and I know that this library is deprecated, but I have multiple embeds in a website and it was the only way I could get it to run. There are console errors... Uncaught TypeError: Cannot read property…
User14289
  • 189
  • 5
  • 19