Can somebody explain why my video won't load? The player is displayed, but no video.
class App extends Component {
render(){
return (
<div className="App">
<p>hello/p>
<video width="750" height="500" controls >
<source src="..Videos/video1.mp4" type="video/mp4"/> </video> </div>
);
}
}
My directory is set up as follows:
Directory React App
I followed the advice and used src="../Videos/video1.mp4", and the outcome was the same.