New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@triyanox/react-video

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@triyanox/react-video

A video component for react inspired by the ios video player

latest
Source
npmnpm
Version
0.1.9
Version published
Weekly downloads
28
-9.68%
Maintainers
1
Weekly downloads
 
Created
Source

@triyanox/react-video a unified customizable video playback experience across all browsers for react

Introduction

The @triyanox/react-video component is a highly customizable and easy-to-use React component for playing video content in your react applications inspired by apple tv video player. It offers extensive control over video playback and is fully compatible with TailwindCSS, allowing for seamless styling integration.

Installation

To install the component, use the following command:

pnpm add @triyanox/react-video

Usage

Basic Usage

You can use the video component simply by importing Video from the package

import { Video } from "@triyanox/react-video";

export default function Page() {
 return (
   <Video
   src="https://vjs.zencdn.net/v/oceans.mp4"
   />
)}

Options

  • src: VideoSource: The source of the video. This can be either a string URL or an array of objects containing src, type, and label fields.

    • Example:
      [
        { src: 'https://example.com/video.mp4', type: 'video/mp4', label: 'SD' },
        { src: 'https://example.com/video.mp4', type: 'video/mp4', label: 'HD' }
      ]
      // or
      'https://example.com/video.mp4'
      
  • poster?: string: URL of the video's poster image.

    • Example: 'https://example.com/poster.jpg'
  • title?: string: Title of the video.

    • Example: 'Video title'
  • subtitle?: string: Subtitle of the video.

    • Example: 'Video subtitle'
  • Event Handlers:

    • onProgress?: (currentTime: number) => void: Called when the video progress changes.
    • onDuration?: (duration: number) => void: Called when the video duration is available.
    • onEnded?: () => void: Called when the video ends.
    • onPlay?: () => void: Called when the video is played.
    • onPause?: () => void: Called when the video is paused.
    • onLoad?: () => void: Called when the video is loaded.
    • onVolumeChange?: (volume: number) => void: Called when the volume changes.
    • onPlaybackRateChange?: (playbackRate: number) => void: Called when the playback rate changes.
  • Styling and Layout:

    • className?: string: Root CSS class for custom styling.
    • classNames?: object: Object containing CSS classes for various elements (title, subtitle, wrappers, video, backdrop, sliders).
  • Playback Control:

    • autoPlay?: boolean: If true, the video will start playing as soon as it is ready.
    • loop?: boolean: If true, the video will loop continuously.
    • showControls?: boolean: If true, video controls will be displayed.
    • icons?: object: Custom icons for various video controls (play, pause, forward, etc.).
  • Additional Options:

    • hideSliderThumb?: boolean: If true, hides the slider thumb.

Example

import React from 'react';
import { Video } from '@triyanox/react-video';

// Import custom icons (assuming these are available in your project)
import {
  CustomPlayIcon,
  CustomPauseIcon,
  CustomForwardIcon,
  CustomBackwardIcon,
  CustomEnterPipIcon,
  CustomExitPipIcon,
  CustomVolumeIcon,
  CustomFullScreenIcon,
  CustomExitFullScreenIcon,
  CustomLoadingIcon,
} from './YourIconPath';

const MyVideoComponent = () => {
  const videoProps = {
    src: [
      {
        src: 'https://example.com/video-sd.mp4',
        type: 'video/mp4',
        label: 'SD',
      },
      {
        src: 'https://example.com/video-hd.mp4',
        type: 'video/mp4',
        label: 'HD',
      },
    ],
    poster: 'https://example.com/poster.jpg',
    title: 'My Amazing Video',
    subtitle: 'An insightful subtitle',
    onProgress: currentTime => console.log(`Current Time: ${currentTime}`),
    onDuration: duration => console.log(`Duration: ${duration}`),
    onEnded: () => console.log('Video Ended'),
    onPlay: () => console.log('Video Played'),
    onPause: () => console.log('Video Paused'),
    onLoad: () => console.log('Video Loaded'),
    onVolumeChange: volume => console.log(`Volume: ${volume}`),
    onPlaybackRateChange: rate => console.log(`Playback Rate: ${rate}`),
    className: 'custom-video-class',
    autoPlay: true,
    loop: true,
    showControls: true,
    icons: {
      play: CustomPlayIcon,
      pause: CustomPauseIcon,
      forwardBy10: CustomForwardIcon,
      backBy10: CustomBackwardIcon,
      enterPip: CustomEnterPipIcon,
      exitPip: CustomExitPipIcon,
      volume: CustomVolumeIcon,
      fullScreen: CustomFullScreenIcon,
      exitFullScreen: CustomExitFullScreenIcon,
      loading: CustomLoadingIcon,
    },
    classNames: {
      base: 'video-base-class',
      title: 'video-title-class',
      subtitle: 'video-subtitle-class',
      topWrapper: 'top-wrapper-class',
      centerWrapper: 'center-wrapper-class',
      bottomWrapper: 'bottom-wrapper-class',
      video: 'video-element-class',
      backdrop: 'video-backdrop-class',
      volumeSlider: {
        root: 'volume-slider-root-class',
        track: 'volume-slider-track-class',
        thumb: 'volume-slider-thumb-class',
        range: 'volume-slider-range-class',
      },
      playbackRateSlider: {
        root: 'playback-rate-slider-root-class',
        track: 'playback-rate-slider-track-class',
        thumb: 'playback-rate-slider-thumb-class',
        range: 'playback-rate-slider-range-class',
      },
    },
    hideSliderThumb: false,
  };

  return <Video {...videoProps} />;
};


export default MyVideoComponent;

Customization

The video component is fully customizable using TailwindCSS. You can use the className and classNames props to apply your TailwindCSS classes for styling the video player as per your design requirements.

Keywords

react

FAQs

Package last updated on 11 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts