Even if your initial question asks: “Is this happening? Why / how is this happening?”, I take the liberty of answering the following question, namely:
How can this be avoided?
If your site code displays Vimeo iframes for playing videos, you can tell Vimeo not to use tracking beacons or cookies by adding &dnt=1 to the iframe URL. Unfortunately, this is not possible with the Vimeo.Player constructors, so you need to create an iframe manually - either in HTML or in JavaScript.
let player = new Vimeo.Player('player_div_id', { id : '1234567', dnt : true }); let iframe = document.createElement('iframe'); iframe.setAttribute('src', 'https://player.vimeo.com/video/1234567?dnt=1'); iframe.setAttribute('frameborder', '0');
If you embed the Vimeo content that you yourself created, this probably reduces the usefulness of the video statistics, but at least you will not expose your users to third-party tracking!
source share