且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何下载MP4文件而不是在浏览器上播放?

更新时间:2022-03-31 03:02:21

我发现了这个: http://www.webdeveloper.com/forum/showthread.php?244007-已解决 - 强制下载MP3文件而不是流式传输并且我使用Excel文件执行类似操作。

I found this: http://www.webdeveloper.com/forum/showthread.php?244007-RESOLVED-Force-download-of-MP3-file-instead-of-streaming and I do similar things with Excel files.

直接从那里:

使用一个小的PHP文件来处理下载,放在与.mp3相同的文件夹中:

use a small PHP file to handle the download, put in the same folder as the .mp3:

<?php
$file = $_GET['file'];
header ("Content-type: octet/stream");
header ("Content-disposition: attachment; filename=".$file.";");
header("Content-Length: ".filesize($file));
readfile($file);
exit;
?>

可以在任何锚点访问:

<a href="direct_download.php?file=fineline.mp3">Download the mp3</a>