napthedev / react-tuby

A React video player library with YouTube-like UI
https://react-tuby.vercel.app
MIT License
138 stars 42 forks source link

How to make the video autoplay? #12

Open hiep294 opened 1 year ago

hiep294 commented 1 year ago

Could you give an example of code for the autoplay video?

LordAntonio99 commented 1 year ago
    <Player
     src={"Sample Input"}
    >
      {(ref, props) => (
        <video
          ref={ref}
          {...props}
          autoPlay
        />
      )}
    </Player>