I would like to set start time for my mp4 video. I know I can use something like that when I am using youtube video, but I have no idea if there is a way to this with classic mp4 video
<ReactPlayer
url={config.url}
controls
onPause={() => console.log("Pause")}
config={{
youtube: {
playerVars: {
start: 30,
},
},
}}
/>;