mingxinstar / react-hls

simple react component for playing hls/rtmp live stream
44 stars 75 forks source link

looping not supported in attributes. #3

Closed ghost closed 6 years ago

ghost commented 6 years ago

Hi, I could not set loop="true" to make the video loop through. How should I achieve this? Thanks.

mingxinstar commented 6 years ago

@poovizhichandramohan I have added a property videoProps to support your feature. Now you can simply add a property like this:

import ReactHLS from 'react-hls';

<ReactHLS url='http://test.m3u8' videoProps={{ loop : true }} />