Giter VIP home page Giter VIP logo

reactjs-media's Introduction

Reactjs Media

Note: We recommend installing version >=1.1.2 and above. This is because any version before that will cause errors in your code.

The reactjs media is a react package with awesome HTMLMediaElements that are recreated into react components with a good looking UI and fast UX.

It includes currently only has a video and audio component.

Available components:

  • Image
  • Video
  • Audio
  • Youtube Player

Facebook player is soon Comming

Installation

To install go to your terminal and run this script

$ npm install reactjs-media

If your see no error then is is Installed.

Setup

In here we shall show a small demo on how to setup a simple video component. We shall create the default component.

import React from 'react';
import { ReactVideo } from 'reactjs-media/video';

const App = () => {
    return (
        <div>
            <MyVideo />
        </div>
    )
}

const MyVideo = () => {
    return (
        <>
        <div>
            <ReactVideo
                src='https://www.example.com/myvideo.mp4'
                poster='/poster.png'
            />
        <div/>
        </>
    )
}

The above code can be used to create the most basic video component. .

Try it on Codesandbox

A few important props you can pass are here:

Prop type Function
src string : Required This is the source of the video you want to display a it will be placed in the <source /> tag.
poster string: This is the poster os the video
className string The class of the video
onPlay fuction It takes in a function and you can use it how you want
onPause fuction It also takes in a function and you can use it how you want
onTimeUpdate function It is triggered when the video is playing. It passes in 3 arguments. An event, currentTime, and the percentage finished.

If you want to learn more on how to customize it. Checkout the offical Documentation


This package is developed by Beingana Jim Junior a fullstack Developer. The source code can be found on Github. Anybody interested is free to contribute.

reactjs-media's People

Contributors

jim-junior avatar dependabot-preview[bot] avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.