We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I wanted to loop a specific fragment on video using this:
<ReactPlayer url={`https://www.youtube.com/embed/${this.videoId}`} ref={this.ref} config={{ youtube: { playerVars: { start: this.state.startSecond, end: this.state.endSecond, } } }} loop playbackRate={this.state.playbackRate} playing controls/>
When the video will get to this.state.endSecond it will start from 0 not from this.state.startSecond
this.state.endSecond
this.state.startSecond
I should be able to loop a video fragment.
The text was updated successfully, but these errors were encountered:
c338e9b
Fix youtube fragment looping
325be5f
Fixes cookpete/react-player#897
99bac29
No branches or pull requests
Current Behavior
I wanted to loop a specific fragment on video using this:
When the video will get to
this.state.endSecond
it will start from 0 not fromthis.state.startSecond
Expected Behavior
I should be able to loop a video fragment.
Environment
The text was updated successfully, but these errors were encountered: