0.0.21 • Published 5 months ago

svelte-player v0.0.21

Weekly downloads
-
License
MIT
Repository
github
Last release
5 months ago

Usage

pnpm install svelte-player
<script lang="ts">
	import SveltePlayer from "svelte-player";
</script>

// Render a YouTube video player
<SveltePlayer url="https://www.youtube.com/watch?v=LXb3EKWsInQ" />

By default, SveltePlayer supports many different types of url. Import only one type such as svelte-player/youtube or svelte-player/lazy to lazy load the appropriate player for the url you pass in like react-player not supported.

Demo page: https://fikryfahrezy.github.io/svelte-player

The component parses a URL and loads in the appropriate markup and external SDKs to play media from various sources. Props can be passed in to control playback and react to events such as buffering or media ending. See the demo source for a full example.

For platforms without direct use of npm modules, a minified version of SveletePlayer is not available.

Polyfills

  • Not available

Autoplay

See how react-player handle it.

Props

Read the description at react-player.

PropSupportedNote
url-
playing-
loop-
controls-
lightSet boolean value through props or custom component through <slot name="light" />
volume-
muted-
playbackRate-
width-
height-
style-
progressInterval-
playsinline-
pip-
stopOnUnmount-
fallback-
wrapper-
playIconPass it through <slot name="play-icon" >
previewTabIndex-
config-

Callback props

Read the description at react-player.

Callback props take a function that gets fired on various player events:

PropSupportedSvelte Player Version
onReadyon:ready
onStarton:start
onPlayon:play
onProgresson:progress
onDurationon:duration
onPauseon:pause
onBufferon:buffer
onBufferEndon:bufferEnd
onSeekon:seek
onPlaybackRateChangeon:playbackRateChange
onPlaybackQualityChangeon:playbackQualityChange
onEndedon:ended
onErroron:error
onClickPreviewon:clickPreview
onEnablePIPon:enablePIP
onDisablePIPon:disablePIP

Config prop

There is a single config prop to override settings for each type of player:

<SveltePlayer
	url={url}
	config={ {
		youtube: {
			playerVars: {
				showinfo: 1,
			},
		},
		facebook: {
			appId: '12345',
		},
	} }
/>

See the settings here for each player live under different keys.

Methods

Static Methods

Read the description at react-player.

import { canPlay, canEnablePiP, addCustomPlayer, removeCustomPlayers } from 'svelte-player';
MethodSupported
canPlay(url)
canEnablePiP(url)
addCustomPlayer(CustomPlayer)
removeCustomPlayers()

Instance Methods

Use bind:this to call instance methods on the player. See the demo app for an example of this.

MethodSupported
seekTo(amount, type)
getCurrentTime()
getSecondsLoaded()
getDuration()
getInternalPlayer()
showPreview()

Advanced Usage

Light player

The light prop will render a video thumbnail with simple play icon, and only load the full player once a user has interacted with the image. Noembed is used to fetch thumbnails for a video URL. Note that automatic thumbnail fetching for Facebook, Wistia, Mixcloud and file URLs are not supported, and ongoing support for other URLs is not guaranteed.

If you want to pass in your own thumbnail to use, set <slot name="light" /> rather than true through light prop:

<SveltePlayer>
	<img slot="ligth" src="https://example.com/thumbnail.png" alt="Thumbnail" />
</SveltePlayer>

The styles for the preview image and play icon can be overridden by targeting the CSS classes svelte-player__preview, svelte-player__shadow and svelte-player__play-icon.

Responsive player

Set width and height to 100% and wrap the player in a fixed aspect ratio box to get a responsive player:

<script lang="ts">
  import SveltePlayer from "svelte-player";
</script>


<div class="player-wrapper">
  <div class="svelte-player">
    <SveltePlayer
      url="https://www.youtube.com/watch?v=oUFJJNQGwhk"
      playing={true}
      width="100%"
      height="100%"
    />
  </div>
</div>

<style>
.player-wrapper {
  position: relative;
  padding-top: 56.25%; /* 720 / 1280 = 0.5625 */
}

.svelte-player {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
</style>

See StackBlitz example

SDK Overrides

Not supported.

Standalone player

Not supported.

Adding custom players

If you have your own player that is compatible with SveltePlayer’s internal architecture, you can add it using addCustomPlayer:

<script lang="ts">
	import { addCustomPlayer } from "svelte-player";

	addCustomPlayer({
		key: "custom-player",
		name: "CustomPlayer",
		canPlay(url) {
			return /example\.com/.test(url);
		},
		loadComponent() {
			return import('../somewhere');
		},
	});
</script>

Use removeCustomPlayers to clear all custom players:

<script lang="ts">
	import { removeCustomPlayers } from "svelte-player";

	removeCustomPlayers();
</script>

It is your responsibility to ensure that custom players keep up with any internal changes to SveltePlayer in later versions.

Mobile considerations

Read at react-player.

Multiple Sources and Tracks

Passing an array of YouTube URLs to the url prop will load them as an untitled playlist.

<script lang="ts">
	import SveltePlayer from "svelte-player";
</script>

<SveltePlayer
	url={[
		"https://www.youtube.com/watch?v=oUFJJNQGwhk",
		"https://www.youtube.com/watch?v=jNgP6d9HraI",
	]}
/>

When playing file paths, an array of sources can be passed to the url prop to render multiple <source> tags.

<SveltePlayer playing={true} url={["foo.webm", "foo.ogg"]} />

You can also specify a type for each source by using objects with src and type properties.

<SveltePlayer
	playing={true}
	url={[
		{ src: "foo.webm", type: "video/webm" },
		{ src: "foo.ogg", type: "video/ogg" }
	]}
/>

<track> elements for subtitles can be added using config.file:

<SveltePlayer
	playing={true}
	url="foo.webm"
	config={ {
		file: {
			tracks: [
				{ kind: "subtitles", src: "subs/subtitles.en.vtt", srclang: "en", default: true },
				{ kind: "subtitles", src: "subs/subtitles.ja.vtt", srclang: "ja" },
				{ kind: "subtitles", src: "subs/subtitles.de.vtt", srclang: "de" }
			]
		}
	} }
/>

Thanks

0.0.20

5 months ago

0.0.21

5 months ago

0.0.17

5 months ago

0.0.18

5 months ago

0.0.19

5 months ago

0.0.16

9 months ago

0.0.15

10 months ago

0.0.12

10 months ago

0.0.11

10 months ago

0.0.8

10 months ago

0.0.7

10 months ago

0.0.6

10 months ago

0.0.5

10 months ago

0.0.4

10 months ago

0.0.3

10 months ago

0.0.2

10 months ago

0.0.1

10 months ago