vimeowrap.js

Vimeo player embedder extendable with plugins

Stars
48

Deprecated!

See https://github.com/playerxo/playerx for the evolution of this project!

vimeowrap.js

vimeowrap is an easy to use Vimeo player embedder that can be extended with plugins.

Features

  • Uses oEmbed so the embed code is always up to date
  • Playlist support, play videos one after another
  • Extendable with plugins

Usage

Basic

<div id="player"></div>
<script src="https://luwes.github.io/vimeowrap.js/vimeowrap.js"></script>
<script>
	vimeowrap('player').setup({
		urls: [
			'https://vimeo.com/user3709818'
		]
	});
</script>

Carousel Plugin

<div id="player"></div>
<script src="https://luwes.github.io/vimeowrap.js/vimeowrap.js"></script>
<script src="https://luwes.github.io/vimeowrap.js/vimeowrap.carousel.js"></script>
<script>
	vimeowrap('player').setup({
		urls: [
			'https://vimeo.com/user3709818'
		],
		plugins: {
			'carousel': {}
		}
	});
</script>

Configuration