if you have an Apache server where you can edit the .htaccess file, add this line.
AddType application/octet-stream .webm
If you do not want to do this, you can do this with php as well.
PHP code:
<?php $file = $_GET['file']; header ("Content-type: octet/stream"); header ("Content-disposition: attachment; filename=".$file.";"); header("Content-Length: ".filesize($file)); readfile($file); exit; ?>
HTML code:
<a href="direct_download.php?file=fineline.mp3">Download the mp3</a>
source share