Vimeo embed videos
When embedding videos from Vimeo, users have the option to add functionality to the Vimeo player by adding various URL parameters to the end of the player URL.
One of these parameters is dnt, which stands for Do Not Track and blocks the player from tracking any session data, including all cookies and analytics.
To enable the Do Not Track setting on your Vimeo embed video, simply add ?dnt=true to the end of the URL in the src attribute:
<iframe src="https://player.vimeo.com/video/76979871?dnt=true" width="640" height="360"></iframe>
or if you have other parameters enabled already, replace the ? with &:
<iframe src="https://player.vimeo.com/video/76979871?embedparameter=value&dnt=true" width="640" height="360"></iframe>