npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@teamsparta/sparta-player

v0.3.1

Published

A Simple React Component for video.js

Downloads

1,658

Readme

A Simple React Component for using video.js

This package helps you use video.js like a simple React Component without worrying about the UI.

Install

# using npm
npm install @teamsparta/sparta-player
# using yarn
yarn add @teamsparta/sparta-player

Sample UI

Usage

example 1

import React from "react";
import { SpartaPlayer } from "@teamsparta/sparta-player";

const videoSources = [
  {
    src: `1.m3u8`,
    type: "application/x-mpegURL",
  },
  {
    src: `2.m3u8`,
    type: "application/x-mpegURL",
  },
  {
    src: `3.m3u8`,
    type: "application/x-mpegURL",
  },
  {
    src: `4.mp4`,
    type: "video/mp4",
  },
];

//vttSource
const vttSource = [
  `1.vtt`,
  `2.vtt`,
  `3.vtt`,
  `4.vtt`,
];

const titles = ["제목긴거 어떻게 나오나 테스트스트트스트슽", "2", "3", "4"];

const videoSource = videoSources[contentId]?.src;
const vttSource = vttSources[contentId];
const title = titles[contentId];
const navigate = useNavigate();

export const TestPage = () => {
  return (
    <>
      <SpartaPlayer 
        source={videoSource}              // string, required
        videoType="application/x-mpegURL" // string, required
        autoPlay={false}
        controls={true}
        vttSource={vttSource}
        title={title}
        isNavigationOn={true}
        onPlay={() => console.log("onPlay")}
        onPause={() => console.log("onPause")}
        onEnded={() => console.log("onEnded")}
        onTimeUpdate={(time) => console.log("onTimeUpdate", time)}
        onClickPrev={() => {
          navigate(`?contentId=${Number(contentId) - 1}`);
        }}
        onClickNext={() => {
          navigate(`?contentId=${Number(contentId) + 1}`);
        }}
      />
    </>
  );
};

example2

import React from "react";
import { SpartaPlayer } from "@teamsparta/sparta-player";

export const TestPage = ()=>{
 return (
    <>
      <S.MobileWrapper>
        <LectureMobileNavBar />
          <SpartaPlayer
            title={"some video"} 
            sources={"https://www.w3schools.com/html/mov_bbb.mp4"}
            videoType="video/mp4"
            isNavigationOn={true}
          />
        <LectureTapMenu />
        <LectureMobileFloating isInitialized={isInitialized} />
      </S.MobileWrapper>
    </>
  );
}

props

| Option name | Datatype | Default value | Description | |----------------|------------|--------------|-------------------------------------------------------------------------------------------------| | source | string | "" | required / Enter a video source. | | videoType | string | "" | required / Enter a video type. | | autoplay | boolean | false | On loaded whether the content will be started automatically or not | | controls | boolean | true | Whether the player control bar will be shown or not | | vttSource | string | "" | Enter a vtt source. | | isNavigationOn | boolean | true | You can hide the navigation bar in the middle of the control bar. | | onClickPrev | function | ()=>{} | In the navigation, enter a function that will be triggered when the Previous button is clicked. | | onClickNext | function | ()=>{} | In the navigation, enter a function that will be triggered when the Next button is clicked. | | title | string | "" | In the navigation, enter a title that you want to appear in the navigation. | | onPlay | function | ()=>{} | Enter a function that will be triggered when the player starts. | | onPause | function | ()=>{} | Enter a function that will be triggered when the player pauses. | | onTimeUpdate | function | (time)=>{} | Enter a function to trigger whenever the player time is updated. | | onEnded | function | ()=>{} | Enter a function to trigger when the player ends. |

Notification

This package is developed and maintained by TeamSparta. Unfortunately, we are using a private workspace, which makes it difficult to publish to GitHub. If you have any issues or suggestions, please contact us at[email protected]