I am using flow player in my html page.
I already referred This Answer But I Don't know What is moov atom
? . Where It will be added ? Is there need to install any package or module in server ?
When the page loading, a whole video downloaded before playing . How to stop it , I want to steam a video without downloading it , as my code below it will download whole video and then play . I need to stream that video . please how to make a video streaming . please change my direction in my code
<html><head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<script src="flowplayer-3.1.4.min.js" type="text/javascript"></script>
<link rel="stylesheet" type="text/css" href="style.css">
<title>Minimal Flowplayer setup</title>
<script language="javascript">
flowplayer("player", "flowplayer-3.1.5.swf");
</script>
</head>
<body>
<div id="page">
<a href="http://video_URL/Edited_001.mp4"
style="display:block;width="400px"; height="300px" id="player">
</div>
</body>
</html>
I am new to html video streaming .