Vimeo media tracking
This plugin enables the automatic tracking of a Vimeo video, utilising the Snowplow Media Plugin.
To illustrate the tracked events and entities, you can visit an example app that showcases the tracked media events and entities live as you watch a video.
There are examples for both the iframe and player methods of tracking a Vimeo video.
Source code for the app is available here.
Vimeo media events and entities are automatically tracked once configured.
Install plugin
- JavaScript (tag)
- Browser (npm)
Tracker Distribution | Included |
---|---|
sp.js | ❌ |
sp.lite.js | ❌ |
Download:
Download from GitHub Releases (Recommended) | Github Releases (plugins.umd.zip) |
Available on jsDelivr | jsDelivr (latest) |
Available on unpkg | unpkg (latest) |
window.snowplow(
'addPlugin',
'https://cdn.jsdelivr.net/npm/@snowplow/browser-plugin-vimeo-tracking@latest/dist/index.umd.min.js',
['snowplowVimeoTracking', 'VimeoTrackingPlugin']
);
npm install @snowplow/browser-plugin-vimeo-tracking
yarn add @snowplow/browser-plugin-vimeo-tracking
pnpm add @snowplow/browser-plugin-vimeo-tracking
import { VimeoTrackingPlugin } from '@snowplow/browser-plugin-vimeo-tracking';
newTracker('sp1', '{{collector_url}}', {
appId: 'my-app-id',
plugins: [ VimeoTrackingPlugin() ],
});
Basic usage
The snippets below show how to get started with the plugin, after setting up your tracker.
video
attribute valuesThe plugin's video
attribute will accept either:
- An
iframe
element - An instance of
Vimeo.Player
, created with the Vimeo Player SDK
iFrame
- JavaScript (tag)
- Browser (npm)
<iframe
id='vimeo-iframe'
src='https://player.vimeo.com/video/535907279?h=db7ea8b89c'
></iframe>
const id = 'XXXXX'; // randomly generated ID
const video = document.getElementById('vimeo-iframe')
window.snowplow('startVimeoTracking', { id, video });
// Vimeo events are tracked...
window.snowplow('endVimeoTracking', id);
<iframe
id='vimeo-iframe'
src='https://player.vimeo.com/video/535907279?h=db7ea8b89c'
></iframe>
import { startVimeoTracking, endVimeoTracking } from '@snowplow/browser-plugin-vimeo-tracking'
const id = 'XXXXX'; // randomly generated ID
const video = document.getElementById('vimeo-iframe')
startVimeoTracking({ id, video })
// Vimeo events are tracked...
endVimeoTracking(id)
Vimeo.Player
- JavaScript (tag)
- Browser (npm)
<div id='vimeo-player'></div>
const id = 'XXXXX'; // randomly generated ID
const video = new Vimeo.Player('vimeo-player', {
videoId: 'zSM4ZyVe8xs'
});
window.snowplow('startVimeoTracking', { id, video });
// Vimeo events are tracked...
window.snowplow('endVimeoTracking', id);
<div id='vimeo-player'></div>
import { Player } from '@vimeo/player'
import { startVimeoTracking, endVimeoTracking } from '@snowplow/browser-plugin-vimeo-tracking'
const id = 'XXXXX'; // randomly generated ID
const video = new Player('vimeo-player', {
videoId: 'zSM4ZyVe8xs'
});
startVimeoTracking({ id, video })
// Vimeo events are tracked...
endVimeoTracking(id)
It's important to call endVimeoTracking
as this will end any recurring ping events, clear all listeners set by the Vimeo plugin, along with resetting statistics counters used by the Snowplow Media plugin.
Selecting events to track
The plugin provides automatic tracking of the following events
Vimeo Event Name | Description |
---|---|
Ready | Sent when the media tracking is successfully attached to the player and can track events. |
Play | Sent when the player changes state to playing from previously being paused. |
Pause | Sent when the user pauses the playback. |
End | Sent when playback stops when end of the media is reached or because no further data is available. |
SeekStart | Sent when a seek operation begins. |
SeekEnd | Sent when a seek operation completes. |
PlaybackRateChange | Sent when the playback rate has changed. |
VolumeChange | Sent when the volume has changed. |
FullscreenChange | Sent immediately after the browser switches into or out of full-screen mode. |
PictureInPictureChange | Sent immediately after the browser switches into or out of picture-in-picture mode. |
BufferStart | Sent when the player goes into the buffering state and begins to buffer content. |
BufferEnd | Sent when the the player finishes buffering content and resumes playback. |
QualityChange | Sent when the video playback quality changes automatically. |
Error | Sent when the Vimeo player encounters an error |
CuePoint | Sent when a cue point is reached. |
ChapterChange | Sent when the chapter changes. |
TextTrackChange | Sent when the text track changes. |
InteractiveHotspotClicked | Sent when an interactive hotspot is clicked. |
InteractiveOverlayPanelClicked | Sent when an interactive overlay panel is clicked. |
If you wish to track only a subset of these events, you can pass an array of VimeoEvent
s to the startVimeoTracking
function:
- JavaScript (tag)
- Browser (npm)
window.snowplow('startVimeoTracking', {
id,
video,
captureEvents: ['play', 'pause'],
})
import { VimeoEvent } from '@snowplow/browser-plugin-vimeo-tracking'
startVimeoTracking({
id,
video,
captureEvents: [VimeoEvent.Play, VimeoEvent.Pause],
})
Advanced usage
As the Vimeo plugin uses Snowplow Media internally, for more granular control over events, you can utilise any of the functions provided by the Snowplow Media Plugin.
For example, if you wish to include additional behavior when a video is paused, you can create callback on the pause
event of an instance of a Vimeo player.
In the following example, ensure you aren't passing the pause
event to the startVimeoTracking
function, as this will result in the event being tracked twice.
- JavaScript (tag)
- Browser (npm)
const id = 'XXXXX'; // randomly generated ID
const video = new Vimeo.Player('vimeo-player', {
videoId: 'zSM4ZyVe8xs'
});
window.snowplow('startVimeoTracking', { id, video, captureEvents: ['play']});
video.on('pause', () => {
// Do something when the video is paused
window.snowplow('trackPauseEvent', { id });
});
import { Player } from '@vimeo/player'
import { trackPauseEvent } from '@snowplow/browser-plugin-media'
const id = 'XXXXX'; // randomly generated ID
const video = new Player('vimeo-player', {
videoId: 'zSM4ZyVe8xs'
});
startVimeoTracking({ id, video, captureEvents: [VimeoEvent.Play]});
video.on('pause', () => {
// Do something when the video is paused
trackPauseEvent({ id })
});
Tracking advertising events
Advertising events are not tracked automatically, but can be tracked using the trackAd*
functions provided by Snowplow Media. For a full list of available functions, see the Snowplow Media Plugin documentation.
- JavaScript (tag)
- Browser (npm)
const id = 'XXXXX'; // randomly generated ID
const video = new Player('vimeo-player', {
videoId: 'zSM4ZyVe8xs'
});
window.snowplow('startVimeoTracking', { id, video });
...
// When your ad break starts
window.snowplow('trackMediaAdBreakStart', { id });
// When your ad break ends
window.snowplow('trackMediaAdBreakEnd', { id });
...
window.snowplow('endVimeoTracking', id);;
import { trackMediaAdBreakStart, trackMediaAdBreakEnd } from '@snowplow/browser-plugin-media';
const id = 'XXXXX'; // randomly generated ID
const video = new Player('vimeo-player', {
videoId: 'zSM4ZyVe8xs'
});
startVimeoTracking({ id, video });
...
// When your ad break starts
trackMediaAdBreakStart({ id });
// When your ad break ends
trackMediaAdBreakEnd({ id });
...
endVimeoTracking(id);