Version: 1.x
Standard Player
The Standard Player is used to interact with a provider/embed through the core Vime player interface. If you'd like to know what features it includes and how it compares to other options then see the getting started page.
#
Installation- NPM
- Yarn
- JSDELIVR
The dist
folder inside the package contains multiple exports:
standard.js
is a UMD development build that can be used directly in the browser via the<script>
tag.standard.esm.js
is intended for use with modern bundlers like Webpack or Rollup.standard.min.js
is a UMD production build that can be used directly in the browser via the<script>
tag.standard.esm.min.js
is an ESM production build that can be used directly in modern browsers via the<script type="module">
tag.
info
- UMD builds are exported under the
Vime
namespace. - If you're using a bundler then it will automatically pull in the correct files.
- If you're using svelte-loader or rollup-plugin-svelte then you'll receive the uncompiled components.
#
Setup- JavaScript
- Svelte
info
See the client-side component API for the complete set of component initialization options.
#
Where to next?- See the provider notes page for any provider specific issues or features, and then go to the API section to find out how to interact with the player.
- See the loading media guide to see how you can set the
src
prop.